summaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg15
1 files changed, 15 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index 6b9ea38..8e18434 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -17,3 +17,18 @@ url = https://github.com/FFY00/python-ioctl
[options]
packages = find:
python_requires = >=3.6, <4
+
+[flake8]
+max-line-length = 127
+max-complexity = 10
+
+[mypy]
+ignore_missing_imports = True
+strict = True
+
+[isort]
+line_length = 127
+lines_between_types = 1
+lines_after_imports = 2
+known_first_party = ioctl
+default_section = THIRDPARTY