forked from statsmodels/statsmodels
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.flake8
More file actions
22 lines (19 loc) · 721 Bytes
/
.flake8
File metadata and controls
22 lines (19 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[flake8]
exclude = .git,build,docs,archive
max-line-length = 88
extend-select =
B904,
# B905, # Enable when Python 3.10 is the minimum
extend-ignore =
# Required to allow black formatting
E203,
# E203: Whitespace before ':' (Needed for black)
E501,
# E501: Line too long (### > 88 characters) (Needed for black)
E701,
# E701: Multiple statements on one line (colon) (Needed for black)
per-file-ignores =
statsmodels/examples/tests/test_notebooks.py: F401
statsmodels/discrete/tests/results/results_predict.py: E131, E251
statsmodels/discrete/tests/results/results_truncated_st.py: E131, E251
statsmodels/treatment/tests/results/results_teffects.py: E124, E128, E131