Skip to content

Commit 3dc2a37

Browse files
Create .flake8
1 parent f7033a3 commit 3dc2a37

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.flake8

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
[flake8]
2+
profile = black
3+
count = True
4+
statistics = True
5+
extend-ignore =
6+
E203,
7+
F403,
8+
C901,
9+
N812,
10+
B010,
11+
ANN101,
12+
max-line-length = 120
13+
max-complexity = 15
14+
docstring-convention = google
15+
exclude =
16+
.ipynb,
17+
.ipynb_checkpoints,
18+
.git,
19+
__pycache__,
20+
venv,
21+
tests,
22+
ignore-names =
23+
X_train,
24+
X_control,
25+
X,
26+
X_val,
27+
X_valid,
28+
X_test,
29+
inline-quotes = double

0 commit comments

Comments
 (0)