aboutsummaryrefslogtreecommitdiffstats
path: root/.pylintrc
diff options
context:
space:
mode:
authorGuilhem Moulin <guilhem@fripost.org>2025-04-17 12:23:38 +0200
committerGuilhem Moulin <guilhem@fripost.org>2025-04-19 05:14:48 +0200
commit2abf2297aabb355b72c6ae9e0aaf350f7a6cbe9d (patch)
treedd1a157dc6e08a96fdb99d79a6cf2e43047f3650 /.pylintrc
parent4bcf4d8a3229c89813cbf3c05f4ef14cc80202d9 (diff)
Add type hints and refactor a bit to please pylint.
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc7
1 files changed, 7 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
new file mode 100644
index 0000000..54b0100
--- /dev/null
+++ b/.pylintrc
@@ -0,0 +1,7 @@
+[DESIGN]
+max-args = 20
+max-positional-arguments = 20
+max-locals = 50
+max-branches = 25
+max-statements = 100
+max-nested-blocks = 10