-
Notifications
You must be signed in to change notification settings - Fork 16
/
setup.cfg
58 lines (56 loc) · 1.83 KB
/
setup.cfg
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[pycodestyle]
# SBOL code should fit on a 120 character wide display. Yes, it's an
# arbitrary limit. It takes into account modern displays, while not
# allowing developers to wildly exceed reasonable limits. Not everyone
# can afford a monstrous wall-sized display.
max-line-length = 119
[pylint.FORMAT]
max-line-length = 119
[pylint.MESSAGES CONTROL]
# Use pylint --rcfile=/dev/null --reports=y to summarize issues and see
# the low hanging fruit
disable = abstract-class-instantiated,
attribute-defined-outside-init,
catching-non-exception,
consider-using-generator,
consider-using-get,
disallowed-name,
implicit-str-concat,
import-outside-toplevel,
logging-not-lazy,
consider-using-enumerate,
consider-using-f-string,
cyclic-import,
duplicate-code,
fixme,
function-redefined,
global-statement,
inconsistent-return-statements,
invalid-name,
isinstance-second-argument-not-valid-type,
logging-fstring-interpolation,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
no-else-raise,
no-else-return,
protected-access,
raise-missing-from,
redefined-builtin,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
too-many-locals,
too-many-public-methods,
undefined-variable,
unidiomatic-typecheck,
unnecessary-pass,
unspecified-encoding,
unused-argument,
unused-import,
unused-variable,
unused-wildcard-import,
use-dict-literal,
useless-parent-delegation,
useless-return,
wildcard-import