aboutsummaryrefslogtreecommitdiffstats
path: root/setup.cfg
diff options
context:
space:
mode:
authornico <nico@magicbroccoli.de>2020-06-27 12:07:09 +0200
committernico <nico@magicbroccoli.de>2020-06-27 12:07:09 +0200
commit8b26b1eb8e5cd8d69e600a4c4eec9bea28ef8059 (patch)
tree0cbf83fb8f5245a9178e98e4a851f38d8261a8f8 /setup.cfg
parentfa87c166ed68fac05970ae60eda532d6ba5a851a (diff)
tool configuration
* seperate tool config and tool call * rename black stage to code consistency for a greater readability - remove allow_failure from the third stage I did decide to remove the allowed failure tag to encourage a higher code quality.
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg5
1 files changed, 5 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..6e6bed8
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,5 @@
+[flake8]
+ignore = E501
+exclude = .git,__pycache__,.gitlab
+max-complexity = 15
+max-line-length = 120