forked from Scitator/exp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.cfg
34 lines (32 loc) · 864 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
27
28
29
30
31
32
33
34
[flake8]
ignore = C408,D100,D101,D102,D103,D104,D104,D105,D106,D107,D202,D205,D212,D415,DAR101,DAR201,E731,N806,N812,NIP319,NIP322,NIP323
max-line-length = 89
max-doc-length = 89
inline-quotes = double
multiline-quotes = double
docstring-quotes = double
convention = google
docstring_style = google
strictness = short
per-file-ignores =
**/__init__.py:F401
[darglint]
ignore_regex=^_(.*)
[isort]
combine_as_imports = true
order_by_type = false
force_grid_wrap = 0
force_sort_within_sections = true
line_length = 89
lines_between_types = 0
multi_line_output = 3
no_lines_before = STDLIB,LOCALFOLDER
reverse_relative = true
default_section = THIRDPARTY
known_first_party = animus
known_src = src
skip_glob = **/__init__.py
force_to_top = typing
include_trailing_comma = true
use_parentheses = true
sections = FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,SRC,LOCALFOLDER