Skip to content

Commit 5d1e1e8

Browse files
committed
flake8: add relaxed config
1 parent 1140790 commit 5d1e1e8

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.flake8

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# flake8 is used for linting Python code setup to automatically run with
2+
# pre-commit.
3+
#
4+
# ref: https://flake8.pycqa.org/en/latest/user/configuration.html
5+
#
6+
7+
[flake8]
8+
# E: style errors
9+
# W: style warnings
10+
# C: complexity
11+
# D: docstring warnings (unused pydocstyle extension)
12+
ignore = E, C, W, D

0 commit comments

Comments
 (0)