summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorSybren A. Stüvel <sybren@stuvel.eu>2019-08-04 15:47:11 +0200
committerSybren A. Stüvel <sybren@stuvel.eu>2019-08-04 17:05:58 +0200
commit6760eb76e665dc81863a82110164c4b3b38e7ee9 (patch)
tree3a9cf1606c851ad4067c2419fec78e7f6ca044ac /setup.cfg
parentded036cf988b0cf4b20002d88434282f30762638 (diff)
downloadrsa-git-6760eb76e665dc81863a82110164c4b3b38e7ee9.tar.gz
Added mypy for static type checking
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg13
1 files changed, 13 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index ed8a958..c5601b1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,3 +3,16 @@ universal = 1
[metadata]
license_file = LICENSE
+
+[flake8]
+max-line-length = 100
+
+[pep8]
+max-line-length = 100
+
+[mypy]
+python_version = 3.7
+warn_unused_ignores = True
+ignore_missing_imports = True
+follow_imports = skip
+incremental = True