-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.cfg
More file actions
38 lines (35 loc) · 791 Bytes
/
Copy pathsetup.cfg
File metadata and controls
38 lines (35 loc) · 791 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
35
36
37
[isort]
default_section = THIRDPARTY
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=119
not_skip = __init__.py
known_first_party =
panini
tests
description-file = README.md
[flake8]
max-line-length = 119
exclude =
# No need to traverse our git directory
.git,
# trash files
trash,
# There's no value in checking cache directories
__pycache__,
# The conf file is mostly autogenerated, ignore it
docs/source/conf.py,
# The old directory contains Flake8 2.0
old,
# This contains our built documentation
build,
# This contains builds of flake8 that we don't want to check
dist,
# ignore tox files
.tox,
# ignore poetry venv
.venv,
.env
max-complexity = 10