diff options
author | 2018-02-03 16:41:49 +0100 | |
---|---|---|
committer | 2018-02-03 16:41:49 +0100 | |
commit | 87779f893dc2e6b4649518b99834130a97d2307c (patch) | |
tree | ddbabf030e03c4d4fd1ebc8afc679952218b931b /.snekrc | |
parent | First test commit w/ travis (diff) |
Lint better
Signed-off-by: martmists <[email protected]>
Diffstat (limited to '.snekrc')
-rw-r--r-- | .snekrc | 22 |
1 files changed, 18 insertions, 4 deletions
@@ -1,8 +1,22 @@ [all] -linters = flake8, isort +linters = flake8, isort, yapf, safety, dodgy, vulture [flake8] -max-line-length = 79 -exclude=venv +max-line-length=100 -[isort]
\ No newline at end of file +[isort] +line_length=100 +indent=' ' +multi_line_output=0 +length_sort=1 +use_parentheses=true +sections=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 + +[style] |