git.lirion.de

Of git, get, and gud

aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorH. P. <coding _æ_ lirion.de> 2024-08-27 18:32:58 +0200
committerH. P. <coding _æ_ lirion.de> 2024-08-27 18:32:58 +0200
commita28b6bb4aad586d0d0f1941ea83b27a5a3417c86 (patch)
treeb6fd3253b085ffed3e825602e9d6a51e9c31fa62
parentb20e14a022b42024ee6d7212b5b641b98441975f (diff)
downloaddotfiles-1.2.2.tar.bz2
flake8 PR 1404 --> config file in aliasHEAD1.2.2master
-rw-r--r--.bash/aliases.bash6
1 files changed, 6 insertions, 0 deletions
diff --git a/.bash/aliases.bash b/.bash/aliases.bash
index bcdfae2..93b0ff4 100644
--- a/.bash/aliases.bash
+++ b/.bash/aliases.bash
@@ -196,3 +196,9 @@ for cmmd in batcat bat; do
break
fi
done
+# Flake8. Nice linter, but...
+# They kneeled to USER STUPIDITY when it comes to configuration. Wut?
+# https://flake8.pycqa.org/en/latest/release-notes/4.0.0.html#backwards-incompatible-changes
+# --> https://github.com/pycqa/flake8/pull/1404
+# Users were confused, so ~/.config/flake8 is not supported anymore. lelkek.
+alias flake8='flake8 --config ${HOME}/.config/flake8'