pyproject.toml 566 Bytes
Newer Older
chenzk's avatar
v1.0  
chenzk committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
[tool.ruff]
target-version = "py38"
line-length = 88
# Enable Pyflakes `E` and `F` codes by default.
lint.select = [
#    "E",
#    "W", # see: https://pypi.org/project/pycodestyle
    "F", # see: https://pypi.org/project/pyflakes
#    "I", #see: https://pypi.org/project/isort/
#    "D", # see: https://pypi.org/project/pydocstyle
#    "N", # see: https://pypi.org/project/pep8-naming
#    "S", # see: https://pypi.org/project/flake8-bandit
]


[tool.mypy]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = 'neuralforecast.compat'
ignore_errors = true