Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(57)

Side by Side Diff: third_party/WebKit/Tools/Scripts/webkitpy/pylintrc

Issue 1845453002: Use newline-separated human-readable pylint check names in webkitpy/pylintrc. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012 Google Inc. All rights reserved. 1 # Copyright (c) 2012 Google Inc. All rights reserved.
2 # 2 #
3 # Redistribution and use in source and binary forms, with or without 3 # Redistribution and use in source and binary forms, with or without
4 # modification, are permitted provided that the following conditions are 4 # modification, are permitted provided that the following conditions are
5 # met: 5 # met:
6 # 6 #
7 # * Redistributions of source code must retain the above copyright 7 # * Redistributions of source code must retain the above copyright
8 # notice, this list of conditions and the following disclaimer. 8 # notice, this list of conditions and the following disclaimer.
9 # * Redistributions in binary form must reproduce the above 9 # * Redistributions in binary form must reproduce the above
10 # copyright notice, this list of conditions and the following disclaimer 10 # copyright notice, this list of conditions and the following disclaimer
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 # Enable the message, report, category or checker with the given id(s). You can 57 # Enable the message, report, category or checker with the given id(s). You can
58 # either give multiple identifier separated by comma (,) or put this option 58 # either give multiple identifier separated by comma (,) or put this option
59 # multiple time. 59 # multiple time.
60 #enable= 60 #enable=
61 61
62 # Disable the message, report, category or checker with the given id(s). You 62 # Disable the message, report, category or checker with the given id(s). You
63 # can either give multiple identifier separated by comma (,) or put this option 63 # can either give multiple identifier separated by comma (,) or put this option
64 # multiple time (only on the command line, not in the configuration file where 64 # multiple time (only on the command line, not in the configuration file where
65 # it should appear only once). 65 # it should appear only once).
66 # CHANGED: 66 # CHANGED:
67 # C0103: Invalid name "" 67 disable=
68 # C0111: Missing docstring 68 invalid-name,
69 # C0301: Line too long 69 missing-docstring,
70 # C0302: Too many lines in module (N) 70 line-too-long,
71 # I0010: Unable to consider inline option '' 71 too-many-lines,
72 # I0011: Locally disabling WNNNN 72 bad-inline-option,
73 # 73 locally-disabled,
74 # R0201: Method could be a function 74 no-self-use,
75 # R0801: Similar lines in N files 75 duplicate-code,
76 # R0901: Too many ancestors (8/7) 76 too-many-ancestors,
77 # R0902: Too many instance attributes (N/7) 77 too-many-instance-attributes,
78 # R0903: Too few public methods (N/2) 78 too-few-public-methods,
79 # R0904: Too many public methods (N/20) 79 too-many-public-methods,
80 # R0911: Too many return statements (N/6) 80 too-many-return-statements,
81 # R0912: Too many branches (N/12) 81 too-many-branches,
82 # R0913: Too many arguments (N/5) 82 too-many-arguments,
83 # R0914: Too many local variables (N/15) 83 too-many-locals,
84 # R0915: Too many statements (N/50) 84 too-many-statements,
85 # R0921: Abstract class not referenced 85 abstract-class-not-used,
86 # R0922: Abstract class is only referenced 1 times 86 abstract-class-little-used,
87 # W0122: Use of the exec statement 87 exec-used,
88 # W0141: Used builtin function '' 88 bad-builtin,
89 # W0212: Access to a protected member X of a client class 89 star-args,
90 # W0142: Used * or ** magic 90 protected-access,
91 # W0401: Wildcard import X 91 wildcard-import,
92 # W0402: Uses of a deprecated module 'string' 92 deprecated-module,
93 # W0404: 41: Reimport 'XX' (imported line NN) 93 reimported,
94 # W0511: TODO 94 fixme,
95 # W0603: Using the global statement 95 global-statement,
96 # W0614: Unused import X from wildcard import 96 unused-wildcard-import,
97 # W0703: Catch "Exception" 97 broad-except,
98 # W1201: Specify string format arguments as logging function parameters 98 logging-not-lazy,
99 disable=C0103,C0111,C0301,C0302,I0010,I0011,R0201,R0801,R0901,R0902,R0903,R0904, R0911,R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0212,W0401,W0402,W0 404,W0511,W0603,W0614,W0703,W1201
100 99
101 100
102 [REPORTS] 101 [REPORTS]
103 102
104 # Set the output format. Available formats are text, parseable, colorized, msvs 103 # Set the output format. Available formats are text, parseable, colorized, msvs
105 # (visual studio) and html 104 # (visual studio) and html
106 output-format=text 105 output-format=text
107 106
108 # Include message's id in output 107 # Include message's id in output
109 include-ids=yes 108 include-ids=yes
(...skipping 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
305 # Create a graph of internal dependencies in the given file (report RP0402 must 304 # Create a graph of internal dependencies in the given file (report RP0402 must
306 # not be disabled) 305 # not be disabled)
307 int-import-graph= 306 int-import-graph=
308 307
309 308
310 [EXCEPTIONS] 309 [EXCEPTIONS]
311 310
312 # Exceptions that will emit a warning when being caught. Defaults to 311 # Exceptions that will emit a warning when being caught. Defaults to
313 # "Exception" 312 # "Exception"
314 overgeneral-exceptions=Exception 313 overgeneral-exceptions=Exception
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698