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

Side by Side Diff: pylintrc

Issue 739073004: pylintrc: Disable R0401: Cyclic Import (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 6 years, 1 month 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 [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 22 matching lines...) Expand all
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 (only on the command line, not in the configuration file where 34 # multiple time (only on the command line, not in the configuration file where
35 # it should appear only once). 35 # it should appear only once).
36 # CHANGED: 36 # CHANGED:
37 # C0103: Invalid name "" 37 # C0103: Invalid name ""
38 # C0111: Missing docstring 38 # C0111: Missing docstring
39 # C0302: Too many lines in module (N) 39 # C0302: Too many lines in module (N)
40 # I0010: Unable to consider inline option '' 40 # I0010: Unable to consider inline option ''
41 # I0011: Locally disabling WNNNN 41 # I0011: Locally disabling WNNNN
42 # 42 #
43 # R0401: Cyclic Import
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)
(...skipping 30 matching lines...) Expand all
83 # old-style-class 84 # old-style-class
84 # protected-access 85 # protected-access
85 # superfluous-parens 86 # superfluous-parens
86 # super-on-old-class 87 # super-on-old-class
87 # too-many-function-args 88 # too-many-function-args
88 # trailing-whitespace 89 # trailing-whitespace
89 # unnecessary-semicolon 90 # unnecessary-semicolon
90 # unpacking-non-sequence 91 # unpacking-non-sequence
91 # unused-import 92 # unused-import
92 # useless-else-on-loop 93 # 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,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 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 703,W1201,bad-continuation,anomalous-backslash-in-string,bad-context-manager,bad -indentation,bad-str-strip-call,bad-whitespace,cell-var-from-loop,deprecated-lam bda,eval-used,function-redefined,import-error,locally-enabled,missing-final-newl ine,no-init,no-name-in-module,no-self-use,not-callable,old-style-class,protected -access,superfluous-parens,super-on-old-class,too-many-function-args,trailing-wh itespace,unnecessary-semicolon,unpacking-non-sequence,unused-import,useless-else -on-loop
94 95
95 96
96 [REPORTS] 97 [REPORTS]
97 98
98 # Set the output format. Available formats are text, parseable, colorized, msvs 99 # Set the output format. Available formats are text, parseable, colorized, msvs
99 # (visual studio) and html 100 # (visual studio) and html
100 output-format=text 101 output-format=text
101 102
102 # Put messages in a separate file for each module / package specified on the 103 # Put messages in a separate file for each module / package specified on the
103 # command line instead of printing them on stdout. Reports (if any) will be 104 # command line instead of printing them on stdout. Reports (if any) will be
(...skipping 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
296 # Create a graph of internal dependencies in the given file (report RP0402 must 297 # Create a graph of internal dependencies in the given file (report RP0402 must
297 # not be disabled) 298 # not be disabled)
298 int-import-graph= 299 int-import-graph=
299 300
300 301
301 [EXCEPTIONS] 302 [EXCEPTIONS]
302 303
303 # Exceptions that will emit a warning when being caught. Defaults to 304 # Exceptions that will emit a warning when being caught. Defaults to
304 # "Exception" 305 # "Exception"
305 overgeneral-exceptions=Exception 306 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