-
Notifications
You must be signed in to change notification settings - Fork 42
/
.pylintrc
37 lines (36 loc) · 915 Bytes
/
.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
28
29
30
31
32
33
34
35
36
37
[MASTER]
disable = locally-disabled,
too-few-public-methods,
too-many-public-methods,
too-many-instance-attributes,
invalid-name,
missing-docstring,
too-many-lines,
not-callable,
redefined-builtin,
too-many-arguments,
invalid-sequence-index,
line-too-long,
invalid-unary-operand-type,
redefined-outer-name,
len-as-condition,
redefined-argument-from-local,
no-else-return,
no-self-use,
no-member,
too-many-branches,
too-many-statements,
too-many-locals,
too-many-ancestors,
wildcard-import,
unused-wildcard-import,
global-statement,
protected-access,
undefined-variable,
unused-argument,
consider-using-f-string,
unspecified-encoding,
import-outside-toplevel
extension-pkg-whitelist = mpi4py,pyfftw,numpy,scipy.sparse,shenfun,shenfun.optimization
generated-members = np.floating
reports = no