Move flake8 configuration to setup.cfg (#398)

This commit is contained in:
Adam J. Stewart 2022-02-15 10:53:56 -06:00 коммит произвёл GitHub
Родитель 16774fb6f4
Коммит 78a8d93ff8
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 28 добавлений и 27 удалений

27
.flake8
Просмотреть файл

@ -1,27 +0,0 @@
[flake8]
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
exclude =
# TorchGeo
data/,
logo/,
logs/,
output/,
# Spack
.spack-env/,
# Python
build/,
dist/,
.cache/,
.mypy_cache/,
.pytest_cache/,
__pycache__/,
*.egg-info/,
# Git
.git/,
.github/,

Просмотреть файл

@ -113,3 +113,31 @@ tests =
pytest>=6
# pytest-cov 2.4+ required for pytest --cov flags
pytest-cov>=2.4
[flake8]
max-line-length = 88
extend-ignore =
# See https://github.com/PyCQA/pycodestyle/issues/373
E203,
exclude =
# TorchGeo
data/,
logo/,
logs/,
output/,
# Spack
.spack-env/,
# Python
build/,
dist/,
.cache/,
.mypy_cache/,
.pytest_cache/,
__pycache__/,
*.egg-info/,
# Git
.git/,
.github/,