diff options
author | Devaev Maxim <[email protected]> | 2019-04-06 05:32:02 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2019-04-06 08:04:26 +0300 |
commit | 1d75b738a08c98a5d3d8ac3c685e77360f4c1267 (patch) | |
tree | 3aa89dc7fd0ab737e9332714a784e9d4dde0a362 /testenv/pylintrc | |
parent | 73e04b71ed55a46c939f12548b31746617af2bca (diff) |
validators, tests
Diffstat (limited to 'testenv/pylintrc')
-rw-r--r-- | testenv/pylintrc | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/testenv/pylintrc b/testenv/pylintrc deleted file mode 100644 index 3adf052d..00000000 --- a/testenv/pylintrc +++ /dev/null @@ -1,62 +0,0 @@ -[MASTER] -ignore=.git -extension-pkg-whitelist= - setproctitle, - -[DESIGN] -min-public-methods=0 -max-args=10 - -[TYPECHECK] -ignored-classes= - AioQueue, - -[MESSAGES CONTROL] -disable = - file-ignored, - locally-disabled, - fixme, - missing-docstring, - no-init, - no-self-use, - superfluous-parens, - abstract-class-not-used, - abstract-class-little-used, - duplicate-code, - bad-continuation, - bad-whitespace, - star-args, - broad-except, - redundant-keyword-arg, - wrong-import-order, - too-many-ancestors, - no-else-return, - len-as-condition, - -[REPORTS] -msg-template={symbol} -- {path}:{line}({obj}): {msg} - -[FORMAT] -max-line-length=160 - -[BASIC] -# List of builtins function names that should not be used, separated by a comma -bad-functions= - -# Regular expression matching correct method names -method-rgx=[a-z_][a-z0-9_]{2,50}$ - -# Regular expression matching correct function names -function-rgx=[a-z_][a-z0-9_]{2,50}$ - -# Regular expression which should only match correct module level names -const-rgx=([a-zA-Z_][a-zA-Z0-9_]*)$ - -# Regular expression which should only match correct argument names -argument-rgx=[a-z_][a-z0-9_]{1,30}$ - -# Regular expression which should only match correct variable names -variable-rgx=[a-z_][a-z0-9_]{1,30}$ - -# Regular expression which should only match correct instance attribute names -attr-rgx=[a-z_][a-z0-9_]{1,30}$ |