-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
51 lines (49 loc) · 830 Bytes
/
setup.cfg
File metadata and controls
51 lines (49 loc) · 830 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[flake8]
max-line-length = 88
statistics = true
show-source = true
# If you change the exclusions here, please also update .pre-commit-config.yaml
exclude =
ignore =
# following https://github.com/psf/black/issues/429
# These rules do not need to be checked as black fixes them automatically
E101,
E111,
E114,
E115,
E116,
E117,
E121,
E122,
E123,
E124,
E125,
E126,
E127,
E128,
E129,
E131,
E133,
E2,
E3,
E5,
E701,
E702,
E703,
E704,
W1,
W2,
W3,
W503,
W504
# Be careful with changing, config is engineered to be compatible with black code formatter.
# https://black.readthedocs.io/en/stable/the_black_code_style.html
[isort]
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
use_parentheses=True
line_length=88
ensure_newline_before_comments=True
[metadata]
license_files = LICENSE.md