summaryrefslogtreecommitdiff
path: root/pylintrc
diff options
context:
space:
mode:
authorDevaev Maxim <[email protected]>2018-11-16 09:25:39 +0300
committerDevaev Maxim <[email protected]>2018-11-16 09:25:39 +0300
commitcd6e490d0f68147980dcf62bea5aace1b05d59e6 (patch)
tree76cb1a6f66ca4b50236333588c51190570c418ef /pylintrc
parent17c6b9e31f9910c30ac660476e7bed8103f3935e (diff)
moved tox to testenv
Diffstat (limited to 'pylintrc')
-rw-r--r--pylintrc62
1 files changed, 0 insertions, 62 deletions
diff --git a/pylintrc b/pylintrc
deleted file mode 100644
index 3adf052d..00000000
--- a/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}$