diff --git a/Makefile b/Makefile index 57d82894..6f334b0e 100644 --- a/Makefile +++ b/Makefile @@ -85,8 +85,7 @@ install-develop: clean-build clean-pyc ## install the package in editable mode a .PHONY: lint lint: - ruff check . - ruff format . --check + invoke lint .PHONY: fix-lint fix-lint: diff --git a/pyproject.toml b/pyproject.toml index 7c9cd8cd..6f2de9c2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -175,7 +175,7 @@ replace = "__version__ = '{new_version}'" preview = true line-length = 100 indent-width = 4 -src = ["rdt"] +src = ["copulas"] target-version = "py312" exclude = [ "docs", @@ -212,7 +212,7 @@ docstring-code-line-length = "dynamic" extend-ignore-names = ["X", "C", "X_padded", "Y", "Y_padded"] [tool.ruff.lint.isort] -known-first-party = ["rdt"] +known-first-party = ["copulas"] [tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401", "E402", "F403", "F405", "E501", "I001"]