Skip to content

Commit

Permalink
fix makefile and pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
gsheni committed May 1, 2024
1 parent 0e550c0 commit ff5ced1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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"]
Expand Down

0 comments on commit ff5ced1

Please sign in to comment.