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

Side by Side Diff: pylintrc

Issue 8363030: Improve pylint error message with an old version is used. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Better Created 9 years, 2 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 | Annotate | Revision Log
« no previous file with comments | « presubmit_canned_checks.py ('k') | 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 [MASTER] 1 [MASTER]
2 2
3 # Specify a configuration file. 3 # Specify a configuration file.
4 #rcfile= 4 #rcfile=
5 5
6 # Python code to execute, usually for sys.path manipulation such as 6 # Python code to execute, usually for sys.path manipulation such as
7 # pygtk.require(). 7 # pygtk.require().
8 #init-hook= 8 #init-hook=
9 9
10 # Profiled execution. 10 # Profiled execution.
(...skipping 17 matching lines...) Expand all
28 # either give multiple identifier separated by comma (,) or put this option 28 # either give multiple identifier separated by comma (,) or put this option
29 # multiple time. 29 # multiple time.
30 #enable= 30 #enable=
31 31
32 # Disable the message, report, category or checker with the given id(s). You 32 # Disable the message, report, category or checker with the given id(s). You
33 # can either give multiple identifier separated by comma (,) or put this option 33 # can either give multiple identifier separated by comma (,) or put this option
34 # multiple time. 34 # multiple time.
35 # C0103: Invalid name "" 35 # C0103: Invalid name ""
36 # C0111: Missing docstring 36 # C0111: Missing docstring
37 # C0302: Too many lines in module (N) 37 # C0302: Too many lines in module (N)
38 # I0010: Unable to consider inline option ''
38 # I0011: Locally disabling WNNNN 39 # I0011: Locally disabling WNNNN
39 # 40 #
40 # It's a problem but not something we can fix right now. 41 # It's a problem but not something we can fix right now.
41 # R0401: Cyclic import 42 # R0401: Cyclic import
42 # 43 #
43 # R0801: Similar lines in N files 44 # R0801: Similar lines in N files
44 # R0901: Too many ancestors (8/7) 45 # R0901: Too many ancestors (8/7)
45 # R0902: Too many instance attributes (N/7) 46 # R0902: Too many instance attributes (N/7)
46 # R0903: Too few public methods (N/2) 47 # R0903: Too few public methods (N/2)
47 # R0904: Too many public methods (N/20) 48 # R0904: Too many public methods (N/20)
48 # R0911: Too many return statements (N/6) 49 # R0911: Too many return statements (N/6)
49 # R0912: Too many branches (N/12) 50 # R0912: Too many branches (N/12)
50 # R0913: Too many arguments (N/5) 51 # R0913: Too many arguments (N/5)
51 # R0914: Too many local variables (N/15) 52 # R0914: Too many local variables (N/15)
52 # R0915: Too many statements (N/50) 53 # R0915: Too many statements (N/50)
53 # R0921: Abstract class not referenced 54 # R0921: Abstract class not referenced
54 # R0922: Abstract class is only referenced 1 times 55 # R0922: Abstract class is only referenced 1 times
55 # W0122: Use of the exec statement 56 # W0122: Use of the exec statement
56 # W0141: Used builtin function '' 57 # W0141: Used builtin function ''
57 # W0142: Used * or ** magic 58 # W0142: Used * or ** magic
58 # W0402: Uses of a deprecated module 'string' 59 # W0402: Uses of a deprecated module 'string'
59 # W0404: 41: Reimport 'XX' (imported line NN) 60 # W0404: 41: Reimport 'XX' (imported line NN)
60 # W0511: TODO 61 # W0511: TODO
61 # W0603: Using the global statement 62 # W0603: Using the global statement
62 # W0613: Unused argument '' 63 # W0613: Unused argument ''
63 # W0703: Catch "Exception" 64 # W0703: Catch "Exception"
64 # W1201: Specify string format arguments as logging function parameters 65 # W1201: Specify string format arguments as logging function parameters
65 disable=C0103,C0111,C0302,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911,R0912, R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0613,W0 703,W1201 66 disable=C0103,C0111,C0302,I0010,I0011,R0401,R0801,R0901,R0902,R0903,R0904,R0911, R0912,R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0 613,W0703,W1201
66 67
67 68
68 [REPORTS] 69 [REPORTS]
69 70
70 # Set the output format. Available formats are text, parseable, colorized, msvs 71 # Set the output format. Available formats are text, parseable, colorized, msvs
71 # (visual studio) and html 72 # (visual studio) and html
72 output-format=text 73 output-format=text
73 74
74 # Include message's id in output 75 # Include message's id in output
75 include-ids=yes 76 include-ids=yes
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
259 # given file (report R0402 must not be disabled) 260 # given file (report R0402 must not be disabled)
260 import-graph= 261 import-graph=
261 262
262 # Create a graph of external dependencies in the given file (report R0402 must 263 # Create a graph of external dependencies in the given file (report R0402 must
263 # not be disabled) 264 # not be disabled)
264 ext-import-graph= 265 ext-import-graph=
265 266
266 # Create a graph of internal dependencies in the given file (report R0402 must 267 # Create a graph of internal dependencies in the given file (report R0402 must
267 # not be disabled) 268 # not be disabled)
268 int-import-graph= 269 int-import-graph=
OLDNEW
« no previous file with comments | « presubmit_canned_checks.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698