-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathsetup.cfg
More file actions
27 lines (22 loc) · 742 Bytes
/
setup.cfg
File metadata and controls
27 lines (22 loc) · 742 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
# All configuration for plugins and other utils is defined here.
# Read more about `setup.cfg`:
# https://docs.python.org/3/distutils/configfile.html
[flake8]
# W503: https://github.com/python/black#line-breaks--binary-operators
# E203: https://github.com/psf/black#slices
# These settings are compatible with Black
ignore = W503, E203
inline-quotes = double
max-line-length = 88
[isort]
# https://github.com/timothycrosley/isort/wiki/isort-Settings
# See https://github.com/timothycrosley/isort#multi-line-output-modes
# These settings are compatible with Black
include_trailing_comma = true
multi_line_output = 3
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88
[pytest]
log_cli = true