source: trunk/setup.cfg

Last change on this file was 7b33931, checked in by Itamar Turner-Trauring <itamar@…>, at 2023-04-17T14:21:20Z

Replace flake8 with ruff.

  • Property mode set to 100644
File size: 661 bytes
Line 
1[aliases]
2build = update_version build
3sdist = update_version sdist
4install = update_version install
5develop = update_version develop
6bdist_egg = update_version bdist_egg
7bdist_wheel = update_version bdist_wheel
8
9# This has been replaced by ruff (see .ruff.toml), which has same checks as
10# flake8 plus many more, and is also faster. However, we're keeping this config
11# in case people still use flake8 in IDEs, etc..
12[flake8]
13# Enforce all pyflakes constraints, and also prohibit tabs for indentation.
14# Reference:
15#   https://flake8.pycqa.org/en/latest/user/error-codes.html
16#   https://pycodestyle.pycqa.org/en/latest/intro.html#error-codes
17select = F, W191
Note: See TracBrowser for help on using the repository browser.