Skip to content

Instantly share code, notes, and snippets.

@ecool
Created January 29, 2022 14:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ecool/d308aa24f0fd83e45ef7626b91549f2e to your computer and use it in GitHub Desktop.
Save ecool/d308aa24f0fd83e45ef7626b91549f2e to your computer and use it in GitHub Desktop.
flake8 config
[flake8]
max-line-length = 80
select =
E # pep8 errors
F # pyflakes errors
W # pep8 warnings
B # flake8-bugbear warnings
ignore =
E201 # whitespace after '['
E202 # whitespace before ']'
W503 # line break before binary operator
exclude =
.git
.vscode
.pytest_cache
.venv
.env
.direnv
per-file-ignores =
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment