-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.cfg
More file actions
43 lines (41 loc) · 1.38 KB
/
setup.cfg
File metadata and controls
43 lines (41 loc) · 1.38 KB
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
[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,
disallowed-name,
import-outside-toplevel,
cyclic-import,
duplicate-code,
fixme,
function-redefined,
global-statement,
invalid-name,
isinstance-second-argument-not-valid-type,
missing-class-docstring,
missing-function-docstring,
missing-module-docstring,
protected-access,
raise-missing-from,
redefined-builtin,
too-few-public-methods,
too-many-arguments,
too-many-instance-attributes,
too-many-locals,
too-many-positional-arguments,
too-many-public-methods,
undefined-variable,
unused-argument,
unused-import,
unused-wildcard-import,
useless-parent-delegation,
wildcard-import