| Index: third_party/WebKit/Tools/Scripts/webkitpy/pylintrc
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc b/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc
|
| index b3df526c75d2f5f0a5b4cd68f8fd1b88347f407a..4bcd50ee70da0cac708fdf3e92ac9501e0c46025 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/pylintrc
|
| @@ -64,39 +64,38 @@ load-plugins=
|
| # multiple time (only on the command line, not in the configuration file where
|
| # it should appear only once).
|
| # CHANGED:
|
| -# C0103: Invalid name ""
|
| -# C0111: Missing docstring
|
| -# C0301: Line too long
|
| -# C0302: Too many lines in module (N)
|
| -# I0010: Unable to consider inline option ''
|
| -# I0011: Locally disabling WNNNN
|
| -#
|
| -# R0201: Method could be a function
|
| -# R0801: Similar lines in N files
|
| -# R0901: Too many ancestors (8/7)
|
| -# R0902: Too many instance attributes (N/7)
|
| -# R0903: Too few public methods (N/2)
|
| -# R0904: Too many public methods (N/20)
|
| -# R0911: Too many return statements (N/6)
|
| -# R0912: Too many branches (N/12)
|
| -# R0913: Too many arguments (N/5)
|
| -# R0914: Too many local variables (N/15)
|
| -# R0915: Too many statements (N/50)
|
| -# R0921: Abstract class not referenced
|
| -# R0922: Abstract class is only referenced 1 times
|
| -# W0122: Use of the exec statement
|
| -# W0141: Used builtin function ''
|
| -# W0212: Access to a protected member X of a client class
|
| -# W0142: Used * or ** magic
|
| -# W0401: Wildcard import X
|
| -# W0402: Uses of a deprecated module 'string'
|
| -# W0404: 41: Reimport 'XX' (imported line NN)
|
| -# W0511: TODO
|
| -# W0603: Using the global statement
|
| -# W0614: Unused import X from wildcard import
|
| -# W0703: Catch "Exception"
|
| -# W1201: Specify string format arguments as logging function parameters
|
| -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,W0404,W0511,W0603,W0614,W0703,W1201
|
| +disable=
|
| + invalid-name,
|
| + missing-docstring,
|
| + line-too-long,
|
| + too-many-lines,
|
| + bad-inline-option,
|
| + locally-disabled,
|
| + no-self-use,
|
| + duplicate-code,
|
| + too-many-ancestors,
|
| + too-many-instance-attributes,
|
| + too-few-public-methods,
|
| + too-many-public-methods,
|
| + too-many-return-statements,
|
| + too-many-branches,
|
| + too-many-arguments,
|
| + too-many-locals,
|
| + too-many-statements,
|
| + abstract-class-not-used,
|
| + abstract-class-little-used,
|
| + exec-used,
|
| + bad-builtin,
|
| + star-args,
|
| + protected-access,
|
| + wildcard-import,
|
| + deprecated-module,
|
| + reimported,
|
| + fixme,
|
| + global-statement,
|
| + unused-wildcard-import,
|
| + broad-except,
|
| + logging-not-lazy,
|
|
|
|
|
| [REPORTS]
|
|
|