pypa-hatch/.flake8

12 lines
362 B
INI

# TODO: move this to pyproject.toml when supported, see https://github.com/PyCQA/flake8/issues/234
[flake8]
select = B,C,E,F,W,B001,B003,B006,B007,B301,B305,B306,B902,Q000,Q001,Q002,Q003,I252
ignore = E203,E722,W503
max-line-length = 120
ban-relative-imports = true
per-file-ignores =
# tests can use relative imports
tests/*: I252
tests/**/*: I252