git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Pfeiffer <coding _ lirion.de> 2024-05-25 13:00:27 +0200
committerHarald Pfeiffer <coding _ lirion.de> 2024-05-25 13:00:27 +0200
commitc6b2ad382fd4f557ca21fcfa5e5412ca1fa684aa (patch)
tree351579e7ea674aca4c869f820ff1d1885719978d
parentdbac2928e5d019b4f57ecad47cbb8336fcdf7590 (diff)
downloaddotfiles-c6b2ad382fd4f557ca21fcfa5e5412ca1fa684aa.tar.bz2
don't disable tab warnings anymore
-rw-r--r--.flake83
1 files changed, 2 insertions, 1 deletions
diff --git a/.flake8 b/.flake8
index d0281bb..c35b8d3 100644
--- a/.flake8
+++ b/.flake8
@@ -4,7 +4,8 @@
count = True
# show-source = True
# W191: tabs instead of spaces (screw you!), E401: multiple imports on a single line
-ignore = W191,E401
+# ignore = W191,E401
+ignore = E401
max-line-length = 100
# Do test for docstrings. Laziness sucks.
doctests = True