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

Side by Side Diff: pylintrc

Issue 739393004: Revert "Revert "pylint: upgrade to 1.3.1"" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: Created 6 years 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 | « no previous file | third_party/logilab/astng/LICENSE.txt » ('j') | 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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
83 # old-style-class 83 # old-style-class
84 # protected-access 84 # protected-access
85 # superfluous-parens 85 # superfluous-parens
86 # super-on-old-class 86 # super-on-old-class
87 # too-many-function-args 87 # too-many-function-args
88 # trailing-whitespace 88 # trailing-whitespace
89 # unnecessary-semicolon 89 # unnecessary-semicolon
90 # unpacking-non-sequence 90 # unpacking-non-sequence
91 # unused-import 91 # unused-import
92 # useless-else-on-loop 92 # useless-else-on-loop
93 disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912, R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1 201 93 disable=C0103,C0111,C0302,I0010,I0011,R0801,R0901,R0902,R0903,R0904,R0911,R0912, R0913,R0914,R0915,R0921,R0922,W0122,W0141,W0142,W0402,W0404,W0511,W0603,W0703,W1 201,bad-continuation,anomalous-backslash-in-string,bad-context-manager,bad-inden tation,bad-str-strip-call,bad-whitespace,cell-var-from-loop,deprecated-lambda,ev al-used,function-redefined,import-error,locally-enabled,missing-final-newline,no -init,no-name-in-module,no-self-use,not-callable,old-style-class,protected-acces s,superfluous-parens,super-on-old-class,too-many-function-args,trailing-whitespa ce,unnecessary-semicolon,unpacking-non-sequence,unused-import,useless-else-on-lo op
94 94
95 95
96 [REPORTS] 96 [REPORTS]
97 97
98 # Set the output format. Available formats are text, parseable, colorized, msvs 98 # Set the output format. Available formats are text, parseable, colorized, msvs
99 # (visual studio) and html 99 # (visual studio) and html
100 output-format=text 100 output-format=text
101 101
102 # Include message's id in output
103 include-ids=yes
104
105 # Put messages in a separate file for each module / package specified on the 102 # Put messages in a separate file for each module / package specified on the
106 # command line instead of printing them on stdout. Reports (if any) will be 103 # command line instead of printing them on stdout. Reports (if any) will be
107 # written in a file name "pylint_global.[txt|html]". 104 # written in a file name "pylint_global.[txt|html]".
108 files-output=no 105 files-output=no
109 106
110 # Tells whether to display a full report or only the messages 107 # Tells whether to display a full report or only the messages
111 # CHANGED: 108 # CHANGED:
112 reports=no 109 reports=no
113 110
114 # Python expression which should return a note less than 10 (10 is the highest 111 # Python expression which should return a note less than 10 (10 is the highest
(...skipping 184 matching lines...) Expand 10 before | Expand all | Expand 10 after
299 # Create a graph of internal dependencies in the given file (report RP0402 must 296 # Create a graph of internal dependencies in the given file (report RP0402 must
300 # not be disabled) 297 # not be disabled)
301 int-import-graph= 298 int-import-graph=
302 299
303 300
304 [EXCEPTIONS] 301 [EXCEPTIONS]
305 302
306 # Exceptions that will emit a warning when being caught. Defaults to 303 # Exceptions that will emit a warning when being caught. Defaults to
307 # "Exception" 304 # "Exception"
308 overgeneral-exceptions=Exception 305 overgeneral-exceptions=Exception
OLDNEW
« no previous file with comments | « no previous file | third_party/logilab/astng/LICENSE.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698