summaryrefslogtreecommitdiff
path: root/.flake8
diff options
context:
space:
mode:
authoraktersnurra <gustaf.rydholm@gmail.com>2020-06-02 22:49:22 +0200
committeraktersnurra <gustaf.rydholm@gmail.com>2020-06-02 22:49:22 +0200
commit118c02c2730aaac2d10c2b9847339f6ffc83223f (patch)
treef7e1dc9a7159b63945a19d742a525f20c90c969e /.flake8
parent81d48b6a4da96696afde87a54f9fb7d89dd64cd2 (diff)
Working on lab 1.
Diffstat (limited to '.flake8')
-rw-r--r--.flake89
1 files changed, 9 insertions, 0 deletions
diff --git a/.flake8 b/.flake8
new file mode 100644
index 0000000..ff25eb1
--- /dev/null
+++ b/.flake8
@@ -0,0 +1,9 @@
+[flake8]
+select = ANN,B,B9,BLK,C,D,DAR,E,F,I,S,W
+ignore = E203,E501,W503
+max-line-length = 120
+max-complexity = 10
+application-import-names = text_recognizer,tests
+import-order-style = google
+docstring-convention = google
+per-file-ignores = tests/*:S101