-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.cfg
26 lines (23 loc) · 895 Bytes
/
setup.cfg
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
[metadata]
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
[flake8]
max-line-length = 120
exclude = .tox,.git,*/migrations/*,*/static/CACHE/*,docs,node_modules,build
ignore = F405, E501, W503, E203, E731, N818
[isort]
line_length=120
default_section = THIRDPARTY
known_third_party = requests,click,jsonschema
known_first_party = octue,app,fractal,test,tests,twined
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
lines_after_imports=2
# These are necessary for `isort` to create import statements that are
# compatible with `black`. Changing these will break auto-formatting.
# See <https://black.readthedocs.io/en/stable/the_black_code_style.html>.
multi_line_output=3
include_trailing_comma=True
force_grid_wrap=0
combine_as_imports=True
[pydocstyle]
ignore = D100, D101, D102, D103, D104, D105, D107, D203, D205, D213, D400, D415