forked from SublimeLinter/SublimeLinter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
49 lines (42 loc) · 939 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[pycodestyle]
max-line-length = 120
[flake8]
max-line-length = 120
# D100 Missing docstring in public module
# D101 Missing docstring in public class
# D102 Missing docstring in public method
# D103 Missing docstring in public function
# D104 Missing docstring in public package
# D105 Missing docstring in magic method
# D107 Missing docstring in __init__
ignore =
D100,
D101,
D102,
D103,
D104,
D105,
D107,
D205,
D400,
E731,
W503,
W504
exclude =
./.env/
./docs/
./tests/mockito/
./tests/parameterized/
./vendor/
[codespell]
skip = .mypy_cache,*.sublime-workspace,.git,tests/mockito,tests/parameterized,vendor/
; mockito uses atleast as a keyword
ignore-words-list=atleast,falsy
[isort]
known_local_folder=SublimeLinter
skip_glob=docs/*,tests/mockito/*,tests/parameterized/*,vendor/*
profile=black
line_length=90
force_sort_within_sections=true
lines_after_imports=2
combine_as_imports=true