[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