forked from genropy/genropy-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
41 lines (40 loc) · 1.03 KB
/
setup.cfg
File metadata and controls
41 lines (40 loc) · 1.03 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
[flake8]
max-line-length=99
count=True
statistics=True
doctests=True
format=pylint
exclude=
# No need to traverse our git directory or other hidden ones
.git,.vscode,.idea,.tox
# There's no value in checking cache directories
__pycache__,.cache,
# Don't check test resources
data,run_output,
# This is an external dependency
six.py
select=
# E1: All Indentation errors [pycodestyle]
E1,
# W1: All Indentation warnings [pycodestyle]
W1,
# E2: All Whitespace errors [pycodestyle]
E2,
# W2: All Whitespace errors [pycodestyle]
W2,
# E3: All Blank line errors [pycodestyle]
E3,
# W3: All Blank line warnings [pycodestyle]
W3,
# E4: All Import errors [pycodestyle]
E4,
# E5: All Line length errors [pycodestyle]
E5,
# E701: multiple statements on one line (colon) [pycodestyle]
E701,
# E702: multiple statements on one line (semicolon) [pycodestyle]
E702,
# E703: statement ends with a semicolon [pycodestyle]
E703
[aliases]
test=pytest