pylintrc 530 Bytes
Newer Older
Deshui Yu's avatar
Deshui Yu committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Usage:
#       pylint --rcfile=PATH_TO_THIS_FILE PACKAGE_NAME
# or
#       pylint --rcfile=PATH_TO_THIS_FILE SOURCE_FILE.py

[SETTINGS]

max-line-length=140

max-args=5
max-locals=15
max-statements=50
max-attributes=7

const-naming-style=any

17
18
19
20
21
22
23
24
25
26
27
28
disable=all

enable=F,
       E,
       unreachable,
       duplicate-key,
       unnecessary-semicolon,
       global-variable-not-assigned,
       binary-op-exception,
       bad-format-string,
       anomalous-backslash-in-string,
       bad-open-mode
29
30

extension-pkg-whitelist=numpy