We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f7033a3 commit 3dc2a37Copy full SHA for 3dc2a37
.flake8
@@ -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