Skip to content

Remove comments from flake8 extend-ignore #143

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Dec 6, 2022
Merged
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
15 changes: 7 additions & 8 deletions .flake8
Original file line number Diff line number Diff line change
Expand Up @@ -40,21 +40,20 @@ max-line-length = 100
extend-ignore =
E203,
E501,
F401, # duplicate of pylint W0611 (unused-import)
F821, # duplicate of pylint E0602 (undefined-variable)
F841, # duplicate of pylint W0612 (unused-variable)
F401,
F821,
F841,
H,
# Temporary disabled during initial adoption:
D103,
D104,
D200,
D205,
D400,
D401,
S101, # Use of assert detected
S404, # Consider possible security implications associated with subprocess module
S602, # subprocess call with shell=True identified
S603, # subprocess call
S101,
S404,
S602,
S603,

# Allow certain violations in certain files:
per-file-ignores =
Expand Down