-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
210 additions
and
6 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,10 @@ | ||
[flake8] | ||
# Ignore specific warnings or errors. | ||
ignore = E501 | ||
|
||
# Optionally, increase the max line length (if you prefer to set a limit instead of ignoring entirely). | ||
max-line-length = 120 | ||
|
||
# Exclude specific files or directories. | ||
exclude = tests/, docs/, .venv/ | ||
|
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
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,20 @@ | ||
[MASTER] | ||
# List of directories to ignore (relative to the current directory). | ||
ignore=tests | ||
|
||
[MESSAGES CONTROL] | ||
# Disable the following messages by symbolic name or ID. | ||
disable=line-too-long, # C0301: Line too long | ||
broad-exception-caught, # W0718: Catching too general exception Exception | ||
unspecified-encoding, # W1514: Using open without explicitly specifying an encoding | ||
redefined-argument-from-local, # R1704: Redefining argument with a local name | ||
no-value-for-parameter # E1120: No value for argument in function call | ||
|
||
[FORMAT] | ||
# Maximum allowed line length (optional override if you want to enforce a slightly longer limit). | ||
max-line-length=120 | ||
|
||
[REPORTS] | ||
# Disable the output of the report summary. | ||
reports=no | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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