forked from python-microscopy/python-microscopy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
31 lines (26 loc) · 652 Bytes
/
setup.cfg
File metadata and controls
31 lines (26 loc) · 652 Bytes
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
#settings for flake8
[pycodestyle]
ignore = # pycodestyle defaults
E121,E123,E126,E133,E226,E241,E242,E704,W503,W504,W505,
# too many blank lines
E303,
# block comment should start with '# ' (ignored as we use a space for documentation comments, but ommit when commenting out a line of code)
E265,
# line too long
E501,
# whitespace errors
W2,
E2
max-line-length = 130
[flake8]
max-line-length = 130
[coverage:run]
omit =
*/contrib/*
*/setup.py
*/setup_exe.py
*/Protocols/*
*/Hardware/*
parallel = True
[coverage:html]
skip_empty = True