-
Notifications
You must be signed in to change notification settings - Fork 0
/
.snekrc
37 lines (29 loc) · 788 Bytes
/
.snekrc
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
[all]
linters = flake8, pylint, yapf, isort, pyroma, dodgy, vulture
[flake8]
max-line-length=100
exclude=build,tests
ignore=I100,I101,I201,B101,I900,B322,S404,S322,S603,S101,W503
[isort]
line_length=100
indent=' '
multi_line_output=3
length_sort=1
use_parentheses=true
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
import_heading_future=__future__ imports
import_heading_stdlib=Stdlib
import_heading_thirdparty=External Libraries
import_heading_firstparty=Project Internals
force_sort_within_sections=true
include_trailing_comma=True
[vulture]
min-confidence=0
[pypi] # needed for twine
[tool.black]
line-length=100
[style] # needed for yapf, made an issue to their repo to allow [yapf] in non-`setup.cfg` files
[pytest]
testpaths=tests
[unittest]
testpaths=tests