forked from tensorpack/tensorpack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtox.ini
More file actions
25 lines (24 loc) · 641 Bytes
/
tox.ini
File metadata and controls
25 lines (24 loc) · 641 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
[flake8]
max-line-length = 120
# See https://pep8.readthedocs.io/en/latest/intro.html#error-codes
ignore = E265,E741,E742,E743,W504,W605,C408,B007,B008
exclude = .git,
__init__.py,
setup.py,
tensorpack/compat/*,
docs,
examples,
docs/conf.py
snippet,
examples_v2,
_test.py,
show-source = true
[isort]
line_length=100
skip=docs/conf.py
multi_line_output=4
known_tensorpack=tensorpack
known_standard_library=numpy
known_third_party=bob,gym,matplotlib
no_lines_before=STDLIB,THIRDPARTY
sections=FUTURE,STDLIB,THIRDPARTY,tensorpack,FIRSTPARTY,LOCALFOLDER