forked from pycaret/pycaret
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
34 lines (32 loc) · 957 Bytes
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[isort]
profile = black
[flake8]
# TODO: Back to 89
max-line-length = 300
ignore =
# Assign a lambda expression
E731
# Line break before binary operator
W503
# Invalid escape sequence (/ in docstrings)
W605
# Whitespace before ':' (due to black)
E203
per-file-ignores =
# Imported but unused
__init__.py: F401
pycaret/distributions.py: F401
pycaret/internal/preprocess/iterative_imputer.py: F401
pycaret/internal/display/display_backend.py: F401
# Redefinition of unused imports
pycaret/containers/models/classification.py: F811
pycaret/containers/models/clustering.py: F811
pycaret/containers/models/regression.py: F811
pycaret/containers/models/time_series.py: F811
pycaret/nlp/__init__.py: F811
# Local variable is assigned to but never used
tests/test_time_series_mlflow.py: F841
[tool:pytest]
testpaths = tests/
python_files = *.py
python_functions = test_*