-
Notifications
You must be signed in to change notification settings - Fork 42
/
pylintrc
27 lines (23 loc) · 1.12 KB
/
pylintrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[MASTER]
ignore=batchflow
extension-pkg-whitelist=numpy
init-hook='import sys; sys.path.append(".")'
[FORMAT]
max-line-length=120
max-attributes=8
max-args=10
max-locals=25
variable-rgx=([a-z][a-z0-9_]{1,30}|[a-z_])$ # snake_case + single letters
argument-rgx=([a-z][a-z0-9_]{1,30}|[a-z_])$ # snake_case + single letters
[MESSAGE CONTROL]
disable=no-member, no-value-for-parameter, no-self-use, too-many-locals, too-few-public-methods,
too-many-public-methods, too-many-branches, unsubscriptable-object, redefined-variable-type,
too-many-star-expressions, duplicate-code, not-context-manager, too-many-lines, global-statement,
locally-disabled, wrong-import-position, invalid-sequence-index, redundant-keyword-arg, bad-super-call,
no-self-argument, redefined-builtin, arguments-differ, len-as-condition, keyword-arg-before-vararg,
assignment-from-none, useless-return, useless-import-alias, unnecessary-pass, cyclic-import,
assignment-from-no-return, comparison-with-callable, unnecessary-lambda, no-method-argument, blacklisted-name
[TYPECHECK]
ignored-modules=numpy
[MISCELLANEOUS]
notes=