Skip to content

Commit

Permalink
flake8: add relaxed config
Browse files Browse the repository at this point in the history
  • Loading branch information
consideRatio committed Apr 10, 2023
1 parent 1140790 commit 5d1e1e8
Showing 1 changed file with 12 additions and 0 deletions.
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

0 comments on commit 5d1e1e8

Please sign in to comment.