Merge pull request from tahoe-lafs/3362.enforce-no-tabs

Enforce no tabs
This commit is contained in:
Chad Whitacre 2020-08-05 07:59:51 -04:00 committed by GitHub
commit 1ef25e128c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 3 deletions
newsfragments
setup.cfg

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