blob: 07aaf091de1f3ee803713c6efe8c5cddc68f1c47 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
[all]
linters = flake8, isort, yapf, safety, dodgy, vulture
[flake8]
max-line-length=100
[isort]
line_length=100
indent=' '
multi_line_output=0
length_sort=1
use_parentheses=true
sections=FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
import_heading_stdlib=Stdlib
import_heading_thirdparty=External Libraries
import_heading_firstparty=Snekchek
force_sort_within_sections=true
[vulture]
min-confidence=60
exclude=index.py
[style]
|