Skip to content
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

pre-commit: add config and small fixes #390

Merged
merged 7 commits into from
Apr 11, 2023
Merged
Prev Previous commit
Next Next commit
flake8: add relaxed config
consideRatio committed Apr 10, 2023

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 5d1e1e8acff85438368b0b64ec5addcf1ee7c9b7
12 changes: 12 additions & 0 deletions .flake8
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# flake8 is used for linting Python code setup to automatically run with
# pre-commit.
#
# ref: https://flake8.pycqa.org/en/latest/user/configuration.html
#

[flake8]
# E: style errors
# W: style warnings
# C: complexity
# D: docstring warnings (unused pydocstyle extension)
ignore = E, C, W, D