-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.cfg
More file actions
34 lines (30 loc) · 776 Bytes
/
setup.cfg
File metadata and controls
34 lines (30 loc) · 776 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
32
33
34
[aliases]
test=pytest
[tool:pytest]
addopts= --junit-xml=htmlcov/junit.xml
[flake8]
select = A,B,B3,B9,C,C4,C8,E,F,N,Q,W
exclude=
.tox,
.git,
*/migrations/*,
*/static/CACHE/*,
docs,
node_modules,
build,
dist,
*.egg-info
statistics = True
inline-quotes = single
max-line-length = 120
[pylint]
disable =
missing-docstring,
too-few-public-methods,
no-self-use
extension-pkg-whitelist = numpy
function-naming-style = snake_case
max-line-length = 120
load-plugins = pylint.extensions.bad_builtin,pylint.extensions.check_elif,pylint.extensions.comparetozero,pylint.extensions.emptystring,pylint.extensions.redefined_variable_type
[coverage:run]
omit=*/site-packages/*,*/tests/*,*/.eggs/*,/home/circleci/.local/share/virtualenvs/*