-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add flake8 config through setup.cfg
- Loading branch information
Showing
4 changed files
with
27 additions
and
17 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
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,17 +1,17 @@ | ||
# pylint: disable=undefined-variable | ||
from .filter_inputs import * | ||
from .multi_checkbox import * | ||
from .output_summary import * | ||
from .periodic_table import * | ||
from .provider_database import * | ||
from .results import * | ||
from .filter_inputs import * # noqa: F403 | ||
from .multi_checkbox import * # noqa: F403 | ||
from .output_summary import * # noqa: F403 | ||
from .periodic_table import * # noqa: F403 | ||
from .provider_database import * # noqa: F403 | ||
from .results import * # noqa: F403 | ||
|
||
|
||
__all__ = ( | ||
filter_inputs.__all__ # noqa | ||
+ multi_checkbox.__all__ # noqa | ||
+ output_summary.__all__ # noqa | ||
+ periodic_table.__all__ # noqa | ||
+ provider_database.__all__ # noqa | ||
+ results.__all__ # noqa | ||
filter_inputs.__all__ # noqa: F405 | ||
+ multi_checkbox.__all__ # noqa: F405 | ||
+ output_summary.__all__ # noqa: F405 | ||
+ periodic_table.__all__ # noqa: F405 | ||
+ provider_database.__all__ # noqa: F405 | ||
+ results.__all__ # noqa: F405 | ||
) |
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,8 @@ | ||
[flake8] | ||
ignore = | ||
# Line to long. Handled by black. | ||
E501 | ||
# Line break before binary operator. This is preferred formatting for black. | ||
W503 | ||
# Whitespace before ':' | ||
E203 |
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