[flake8] # https://lintlyci.github.io/Flake8Rules/ # E231 missing whitespace after ',' # E266 Too many leading '#' for block comment # E501 Line too long (82 > 79 characters) # W503 Line break occurred before a binary operator <- This one is flipping to the reverse as best-practice, which is how Black currently formats # W605 Invalid escape sequence 'x' ignore = E203, E231, E266, E501, W503, W605, E704 max-line-length = 100 exclude = .git, .venv, __pycache__, docs, gitlab-ci-includes