forked from creativecommons/cc-legal-tools-app
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
18 lines (17 loc) · 684 Bytes
/
Copy pathsetup.cfg
File metadata and controls
18 lines (17 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[flake8]
exclude=docs,node_modules,venv,cc_licenses/settings/local.py
# For compatibility with 'black' (https://black.readthedocs.io/en/stable/compatible_configs.html#flake8)
# Allowing 130 because black doesn't seem yet to be able to fix long lines
# with long string literals on them, and we have plenty...
max-line-length = 130
# E231 missing whitespace after ','
extend-ignore = E203, E231, W503
[isort]
skip_glob=docs,migrations,node_modules,venv,.direnv
# https://black.readthedocs.io/en/stable/compatible_configs.html#isort :
multi_line_output = 3
include_trailing_comma = True
force_grid_wrap = 0
use_parentheses = True
ensure_newline_before_comments = True
line_length = 88