Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Prune setup.cfg some more #12059

Merged
merged 4 commits into from
Feb 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# TODO: incorporate this into pyproject.toml if flake8 supports it in the future.
# See https://github.com/PyCQA/flake8/issues/234
[flake8]
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# for error codes. The ones we ignore are:
# W503: line break before binary operator
# W504: line break after binary operator
# E203: whitespace before ':' (which is contrary to pep8?)
# E731: do not assign a lambda expression, use a def
# E501: Line too long (black enforces this for us)
ignore=W503,W504,E203,E731,E501
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ include book.toml
include pyproject.toml
recursive-include changelog.d *

include .flake8
prune .circleci
prune .github
prune .ci
Expand Down
2 changes: 1 addition & 1 deletion changelog.d/12052.misc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Move `isort` configuration to `pyproject.toml`.
Move configuration out of `setup.cfg`.
1 change: 1 addition & 0 deletions changelog.d/12059.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Move configuration out of `setup.cfg`.
12 changes: 0 additions & 12 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
[trial]
test_suite = tests

[check-manifest]
ignore =
.git-blame-ignore-revs
Expand All @@ -10,12 +7,3 @@ ignore =
pylint.cfg
tox.ini

[flake8]
# see https://pycodestyle.readthedocs.io/en/latest/intro.html#error-codes
# for error codes. The ones we ignore are:
# W503: line break before binary operator
# W504: line break after binary operator
# E203: whitespace before ':' (which is contrary to pep8?)
# E731: do not assign a lambda expression, use a def
# E501: Line too long (black enforces this for us)
ignore=W503,W504,E203,E731,E501