media/webrtc/trunk/tools/gyp/pylintrc

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

michael@0 1 [MASTER]
michael@0 2
michael@0 3 # Specify a configuration file.
michael@0 4 #rcfile=
michael@0 5
michael@0 6 # Python code to execute, usually for sys.path manipulation such as
michael@0 7 # pygtk.require().
michael@0 8 #init-hook=
michael@0 9
michael@0 10 # Profiled execution.
michael@0 11 profile=no
michael@0 12
michael@0 13 # Add files or directories to the blacklist. They should be base names, not
michael@0 14 # paths.
michael@0 15 ignore=CVS
michael@0 16
michael@0 17 # Pickle collected data for later comparisons.
michael@0 18 persistent=yes
michael@0 19
michael@0 20 # List of plugins (as comma separated values of python modules names) to load,
michael@0 21 # usually to register additional checkers.
michael@0 22 load-plugins=
michael@0 23
michael@0 24
michael@0 25 [MESSAGES CONTROL]
michael@0 26
michael@0 27 # Enable the message, report, category or checker with the given id(s). You can
michael@0 28 # either give multiple identifier separated by comma (,) or put this option
michael@0 29 # multiple time.
michael@0 30 #enable=
michael@0 31
michael@0 32 # Disable the message, report, category or checker with the given id(s). You
michael@0 33 # can either give multiple identifier separated by comma (,) or put this option
michael@0 34 # multiple time (only on the command line, not in the configuration file where
michael@0 35 # it should appear only once).
michael@0 36 # C0103: Invalid name "NN" (should match [a-z_][a-z0-9_]{2,30}$)
michael@0 37 # C0111: Missing docstring
michael@0 38 # C0302: Too many lines in module (NN)
michael@0 39 # R0902: Too many instance attributes (N/7)
michael@0 40 # R0903: Too few public methods (N/2)
michael@0 41 # R0904: Too many public methods (NN/20)
michael@0 42 # R0912: Too many branches (NN/12)
michael@0 43 # R0913: Too many arguments (N/5)
michael@0 44 # R0914: Too many local variables (NN/15)
michael@0 45 # R0915: Too many statements (NN/50)
michael@0 46 # W0141: Used builtin function 'map'
michael@0 47 # W0142: Used * or ** magic
michael@0 48 # W0232: Class has no __init__ method
michael@0 49 # W0511: TODO
michael@0 50 # W0603: Using the global statement
michael@0 51 #
michael@0 52 # These should be enabled eventually:
michael@0 53 # C0112: Empty docstring
michael@0 54 # C0301: Line too long (NN/80)
michael@0 55 # C0321: More than one statement on single line
michael@0 56 # C0322: Operator not preceded by a space
michael@0 57 # C0323: Operator not followed by a space
michael@0 58 # C0324: Comma not followed by a space
michael@0 59 # E0101: Explicit return in __init__
michael@0 60 # E0102: function already defined line NN
michael@0 61 # E1002: Use of super on an old style class
michael@0 62 # E1101: Instance of 'XX' has no 'YY' member
michael@0 63 # E1103: Instance of 'XX' has no 'XX' member (but some types could not be inferred)
michael@0 64 # E0602: Undefined variable 'XX'
michael@0 65 # F0401: Unable to import 'XX'
michael@0 66 # R0201: Method could be a function
michael@0 67 # R0801: Similar lines in N files
michael@0 68 # W0102: Dangerous default value {} as argument
michael@0 69 # W0104: Statement seems to have no effect
michael@0 70 # W0105: String statement has no effect
michael@0 71 # W0108: Lambda may not be necessary
michael@0 72 # W0201: Attribute 'XX' defined outside __init__
michael@0 73 # W0212: Access to a protected member XX of a client class
michael@0 74 # W0221: Arguments number differs from overridden method
michael@0 75 # W0223: Method 'XX' is abstract in class 'YY' but is not overridden
michael@0 76 # W0231: __init__ method from base class 'XX' is not called
michael@0 77 # W0301: Unnecessary semicolon
michael@0 78 # W0311: Bad indentation. Found NN spaces, expected NN
michael@0 79 # W0401: Wildcard import XX
michael@0 80 # W0402: Uses of a deprecated module 'string'
michael@0 81 # W0403: Relative import 'XX', should be 'YY.XX'
michael@0 82 # W0404: Reimport 'XX' (imported line NN)
michael@0 83 # W0601: Global variable 'XX' undefined at the module level
michael@0 84 # W0602: Using global for 'XX' but no assignment is done
michael@0 85 # W0611: Unused import pprint
michael@0 86 # W0612: Unused variable 'XX'
michael@0 87 # W0613: Unused argument 'XX'
michael@0 88 # W0614: Unused import XX from wildcard import
michael@0 89 # W0621: Redefining name 'XX' from outer scope (line NN)
michael@0 90 # W0622: Redefining built-in 'NN'
michael@0 91 # W0631: Using possibly undefined loop variable 'XX'
michael@0 92 # W0701: Raising a string exception
michael@0 93 # W0702: No exception type(s) specified
michael@0 94 disable=C0103,C0111,C0302,R0902,R0903,R0904,R0912,R0913,R0914,R0915,W0141,W0142,W0232,W0511,W0603,C0112,C0301,C0321,C0322,C0323,C0324,E0101,E0102,E1002,E1101,E1103,E0602,F0401,R0201,R0801,W0102,W0104,W0105,W0108,W0201,W0212,W0221,W0223,W0231,W0301,W0311,W0401,W0402,W0403,W0404,W0601,W0602,W0611,W0612,W0613,W0614,W0621,W0622,W0631,W0701,W0702
michael@0 95
michael@0 96
michael@0 97 [REPORTS]
michael@0 98
michael@0 99 # Set the output format. Available formats are text, parseable, colorized, msvs
michael@0 100 # (visual studio) and html
michael@0 101 output-format=text
michael@0 102
michael@0 103 # Include message's id in output
michael@0 104 include-ids=yes
michael@0 105
michael@0 106 # Put messages in a separate file for each module / package specified on the
michael@0 107 # command line instead of printing them on stdout. Reports (if any) will be
michael@0 108 # written in a file name "pylint_global.[txt|html]".
michael@0 109 files-output=no
michael@0 110
michael@0 111 # Tells whether to display a full report or only the messages
michael@0 112 reports=no
michael@0 113
michael@0 114 # Python expression which should return a note less than 10 (10 is the highest
michael@0 115 # note). You have access to the variables errors warning, statement which
michael@0 116 # respectively contain the number of errors / warnings messages and the total
michael@0 117 # number of statements analyzed. This is used by the global evaluation report
michael@0 118 # (RP0004).
michael@0 119 evaluation=10.0 - ((float(5 * error + warning + refactor + convention) / statement) * 10)
michael@0 120
michael@0 121 # Add a comment according to your evaluation note. This is used by the global
michael@0 122 # evaluation report (RP0004).
michael@0 123 comment=no
michael@0 124
michael@0 125
michael@0 126 [VARIABLES]
michael@0 127
michael@0 128 # Tells whether we should check for unused import in __init__ files.
michael@0 129 init-import=no
michael@0 130
michael@0 131 # A regular expression matching the beginning of the name of dummy variables
michael@0 132 # (i.e. not used).
michael@0 133 dummy-variables-rgx=_|dummy
michael@0 134
michael@0 135 # List of additional names supposed to be defined in builtins. Remember that
michael@0 136 # you should avoid to define new builtins when possible.
michael@0 137 additional-builtins=
michael@0 138
michael@0 139
michael@0 140 [TYPECHECK]
michael@0 141
michael@0 142 # Tells whether missing members accessed in mixin class should be ignored. A
michael@0 143 # mixin class is detected if its name ends with "mixin" (case insensitive).
michael@0 144 ignore-mixin-members=yes
michael@0 145
michael@0 146 # List of classes names for which member attributes should not be checked
michael@0 147 # (useful for classes with attributes dynamically set).
michael@0 148 ignored-classes=SQLObject
michael@0 149
michael@0 150 # When zope mode is activated, add a predefined set of Zope acquired attributes
michael@0 151 # to generated-members.
michael@0 152 zope=no
michael@0 153
michael@0 154 # List of members which are set dynamically and missed by pylint inference
michael@0 155 # system, and so shouldn't trigger E0201 when accessed. Python regular
michael@0 156 # expressions are accepted.
michael@0 157 generated-members=REQUEST,acl_users,aq_parent
michael@0 158
michael@0 159
michael@0 160 [MISCELLANEOUS]
michael@0 161
michael@0 162 # List of note tags to take in consideration, separated by a comma.
michael@0 163 notes=FIXME,XXX,TODO
michael@0 164
michael@0 165
michael@0 166 [SIMILARITIES]
michael@0 167
michael@0 168 # Minimum lines number of a similarity.
michael@0 169 min-similarity-lines=4
michael@0 170
michael@0 171 # Ignore comments when computing similarities.
michael@0 172 ignore-comments=yes
michael@0 173
michael@0 174 # Ignore docstrings when computing similarities.
michael@0 175 ignore-docstrings=yes
michael@0 176
michael@0 177
michael@0 178 [FORMAT]
michael@0 179
michael@0 180 # Maximum number of characters on a single line.
michael@0 181 max-line-length=80
michael@0 182
michael@0 183 # Maximum number of lines in a module
michael@0 184 max-module-lines=1000
michael@0 185
michael@0 186 # String used as indentation unit. This is usually " " (4 spaces) or "\t" (1
michael@0 187 # tab).
michael@0 188 indent-string=' '
michael@0 189
michael@0 190
michael@0 191 [BASIC]
michael@0 192
michael@0 193 # Required attributes for module, separated by a comma
michael@0 194 required-attributes=
michael@0 195
michael@0 196 # List of builtins function names that should not be used, separated by a comma
michael@0 197 bad-functions=map,filter,apply,input
michael@0 198
michael@0 199 # Regular expression which should only match correct module names
michael@0 200 module-rgx=(([a-z_][a-z0-9_]*)|([A-Z][a-zA-Z0-9]+))$
michael@0 201
michael@0 202 # Regular expression which should only match correct module level names
michael@0 203 const-rgx=(([A-Z_][A-Z0-9_]*)|(__.*__))$
michael@0 204
michael@0 205 # Regular expression which should only match correct class names
michael@0 206 class-rgx=[A-Z_][a-zA-Z0-9]+$
michael@0 207
michael@0 208 # Regular expression which should only match correct function names
michael@0 209 function-rgx=[a-z_][a-z0-9_]{2,30}$
michael@0 210
michael@0 211 # Regular expression which should only match correct method names
michael@0 212 method-rgx=[a-z_][a-z0-9_]{2,30}$
michael@0 213
michael@0 214 # Regular expression which should only match correct instance attribute names
michael@0 215 attr-rgx=[a-z_][a-z0-9_]{2,30}$
michael@0 216
michael@0 217 # Regular expression which should only match correct argument names
michael@0 218 argument-rgx=[a-z_][a-z0-9_]{2,30}$
michael@0 219
michael@0 220 # Regular expression which should only match correct variable names
michael@0 221 variable-rgx=[a-z_][a-z0-9_]{2,30}$
michael@0 222
michael@0 223 # Regular expression which should only match correct list comprehension /
michael@0 224 # generator expression variable names
michael@0 225 inlinevar-rgx=[A-Za-z_][A-Za-z0-9_]*$
michael@0 226
michael@0 227 # Good variable names which should always be accepted, separated by a comma
michael@0 228 good-names=i,j,k,ex,Run,_
michael@0 229
michael@0 230 # Bad variable names which should always be refused, separated by a comma
michael@0 231 bad-names=foo,bar,baz,toto,tutu,tata
michael@0 232
michael@0 233 # Regular expression which should only match functions or classes name which do
michael@0 234 # not require a docstring
michael@0 235 no-docstring-rgx=__.*__
michael@0 236
michael@0 237
michael@0 238 [DESIGN]
michael@0 239
michael@0 240 # Maximum number of arguments for function / method
michael@0 241 max-args=5
michael@0 242
michael@0 243 # Argument names that match this expression will be ignored. Default to name
michael@0 244 # with leading underscore
michael@0 245 ignored-argument-names=_.*
michael@0 246
michael@0 247 # Maximum number of locals for function / method body
michael@0 248 max-locals=15
michael@0 249
michael@0 250 # Maximum number of return / yield for function / method body
michael@0 251 max-returns=6
michael@0 252
michael@0 253 # Maximum number of branch for function / method body
michael@0 254 max-branchs=12
michael@0 255
michael@0 256 # Maximum number of statements in function / method body
michael@0 257 max-statements=50
michael@0 258
michael@0 259 # Maximum number of parents for a class (see R0901).
michael@0 260 max-parents=7
michael@0 261
michael@0 262 # Maximum number of attributes for a class (see R0902).
michael@0 263 max-attributes=7
michael@0 264
michael@0 265 # Minimum number of public methods for a class (see R0903).
michael@0 266 min-public-methods=2
michael@0 267
michael@0 268 # Maximum number of public methods for a class (see R0904).
michael@0 269 max-public-methods=20
michael@0 270
michael@0 271
michael@0 272 [CLASSES]
michael@0 273
michael@0 274 # List of interface methods to ignore, separated by a comma. This is used for
michael@0 275 # instance to not check methods defines in Zope's Interface base class.
michael@0 276 ignore-iface-methods=isImplementedBy,deferred,extends,names,namesAndDescriptions,queryDescriptionFor,getBases,getDescriptionFor,getDoc,getName,getTaggedValue,getTaggedValueTags,isEqualOrExtendedBy,setTaggedValue,isImplementedByInstancesOf,adaptWith,is_implemented_by
michael@0 277
michael@0 278 # List of method names used to declare (i.e. assign) instance attributes.
michael@0 279 defining-attr-methods=__init__,__new__,setUp
michael@0 280
michael@0 281 # List of valid names for the first argument in a class method.
michael@0 282 valid-classmethod-first-arg=cls
michael@0 283
michael@0 284
michael@0 285 [IMPORTS]
michael@0 286
michael@0 287 # Deprecated modules which should not be used, separated by a comma
michael@0 288 deprecated-modules=regsub,string,TERMIOS,Bastion,rexec
michael@0 289
michael@0 290 # Create a graph of every (i.e. internal and external) dependencies in the
michael@0 291 # given file (report RP0402 must not be disabled)
michael@0 292 import-graph=
michael@0 293
michael@0 294 # Create a graph of external dependencies in the given file (report RP0402 must
michael@0 295 # not be disabled)
michael@0 296 ext-import-graph=
michael@0 297
michael@0 298 # Create a graph of internal dependencies in the given file (report RP0402 must
michael@0 299 # not be disabled)
michael@0 300 int-import-graph=
michael@0 301
michael@0 302
michael@0 303 [EXCEPTIONS]
michael@0 304
michael@0 305 # Exceptions that will emit a warning when being caught. Defaults to
michael@0 306 # "Exception"
michael@0 307 overgeneral-exceptions=Exception

mercurial