Add a codecheck for tabs in indentation

This commit is contained in:
Chad Whitacre 2020-07-31 08:14:39 -04:00
parent 9e4eda6912
commit f0ddda9665
2 changed files with 5 additions and 3 deletions

0
newsfragments/3326.minor Normal file
View File

View File

@ -7,6 +7,8 @@ bdist_egg = update_version bdist_egg
bdist_wheel = update_version bdist_wheel
[flake8]
# For now, only use pyflakes errors; flake8 is still helpful because it allows
# ignoring specific errors/warnings when needed.
select = F
# Enforce all pyflakes constraints, and also prohibit tabs for indentation.
# Reference:
# https://flake8.pycqa.org/en/latest/user/error-codes.html
# https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
select = F, W191