This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove `trial` section from setup.cfg This was added in the initial commit from 2014. I can't see that it does anything. Maybe it's there so that you can run `trial` without any extra args, but if I do that then I just get the `--help` message. * Move flake8's config to its own file
- Loading branch information
David Robertson
authored
Feb 22, 2022
1 parent
dcb6a37
commit 94a396e
Showing
5 changed files
with
14 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
Move `isort` configuration to `pyproject.toml`. | ||
Move configuration out of `setup.cfg`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Move configuration out of `setup.cfg`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters