forked from pystiche/pystiche
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
26 lines (25 loc) · 633 Bytes
/
.flake8
File metadata and controls
26 lines (25 loc) · 633 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
[flake8]
# See link below for available options
# https://flake8.pycqa.org/en/latest/user/options.html#options-and-their-descriptions
# Move this to pyproject.toml as soon as it is supported.
# See https://gitlab.com/pycqa/flake8/issues/428
exclude =
.git,
.github,
.venv,
.tox,
.mypy_cache,
.pytest_cache,
__pycache__,
*.pyc,
hubconf.py,
docs/build,
docs/source/galleries,
ignore = E203, E501, W503
max-line-length = 88
per-file-ignores =
__init__.py: F401, F403, F405
tests/conftest.py: F401, F403, F405
pystiche/enc/models/vgg.py: F822
show_source = True
statistics = True