2021-10-14 15:01:37 +00:00
|
|
|
[aliases]
|
|
|
|
build = update_version build
|
|
|
|
sdist = update_version sdist
|
|
|
|
install = update_version install
|
|
|
|
develop = update_version develop
|
|
|
|
bdist_egg = update_version bdist_egg
|
|
|
|
bdist_wheel = update_version bdist_wheel
|
2020-07-06 17:50:06 +00:00
|
|
|
|
2023-04-17 14:21:20 +00:00
|
|
|
# This has been replaced by ruff (see .ruff.toml), which has same checks as
|
|
|
|
# flake8 plus many more, and is also faster. However, we're keeping this config
|
|
|
|
# in case people still use flake8 in IDEs, etc..
|
2020-07-06 17:50:06 +00:00
|
|
|
[flake8]
|
2020-07-31 12:14:39 +00:00
|
|
|
# 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
|