aboutsummaryrefslogtreecommitdiffstats
path: root/.snekrc
diff options
context:
space:
mode:
authorGravatar martmists <[email protected]>2018-02-03 16:41:49 +0100
committerGravatar martmists <[email protected]>2018-02-03 16:41:49 +0100
commit87779f893dc2e6b4649518b99834130a97d2307c (patch)
treeddbabf030e03c4d4fd1ebc8afc679952218b931b /.snekrc
parentFirst test commit w/ travis (diff)
Lint better
Signed-off-by: martmists <[email protected]>
Diffstat (limited to '.snekrc')
-rw-r--r--.snekrc22
1 files changed, 18 insertions, 4 deletions
diff --git a/.snekrc b/.snekrc
index 860f30b6..24a408ce 100644
--- a/.snekrc
+++ b/.snekrc
@@ -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]