forked from autogluon/autogluon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
47 lines (45 loc) · 929 Bytes
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
[tool.ruff]
line-length = 119
target-version = "py38"
extend-exclude = ["__init__.py"]
lint.ignore = [
"E501", # Line too long
"E731", # Do not assign a `lambda` expression, use a `def`
"E722", # Do not use bare `except`
]
lint.isort.known-first-party = ["autogluon"]
lint.isort.known-third-party = [
"gluonts",
"mxnet",
"networkx",
"numpy",
"pandas",
"psutil",
"pytest",
"scipy",
"sklearn",
"sktime",
"statsmodels",
"tqdm",
"Pillow",
"boto3",
"requests",
"timm",
"torch",
"torchvision",
"fairscale",
"scikit-image",
"smart_open",
"lightning",
"torchmetrics",
"transformers",
"nptyping",
"omegaconf",
"pytorch-metric-learning",
"nlpaug",
"nltk",
]
[tool.codespell]
skip = '.git,*.pdf,*.svg,*.ipynb,*.csv,kaggle_feedback_prize'
#
ignore-words-list = 'mape,ans,2st,fo,nd,te,fpr,coo,rouge,SME,NoES'