forked from APrioriInvestments/typed_python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
31 lines (30 loc) · 938 Bytes
/
tox.ini
File metadata and controls
31 lines (30 loc) · 938 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
# The pycodestyle section is used by autopep8
[pycodestyle]
max-line-length = 99
ignore =
E201, # whitespace after '{', '(', etc
E202, # whitespace before '}', ')', etc
E226, # missing whitespace around arithmetic operator
E227, # missing whitespace around bitwise or shift operator
E228, # missing whitespace around modulo operator
E731, # do not assign a lambda expression, use a def
exclude =
.git,
.venv,
build,
nativepython.egg-info
[flake8]
statistics = True
max-line-length = 99
ignore =
E201, # whitespace after '{', '(', etc
E202, # whitespace before '}', ')', etc
E226, # missing whitespace around arithmetic operator
E227, # missing whitespace around bitwise or shift operator
E228, # missing whitespace around modulo operator
E731, # do not assign a lambda expression, use a def
exclude =
.git,
.venv,
build,
nativepython.egg-info