Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ install-dev-requirements:

.PHONY: format
format:
ruff --fix tsdownsample tests
ruff check --fix tsdownsample tests
$(black)
cargo fmt

.PHONY: lint-python
lint-python:
ruff tsdownsample tests
ruff check tsdownsample tests
$(black) --check --diff

.PHONY: lint-rust
Expand Down
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,10 +39,10 @@ module-name = "tsdownsample._rust._tsdownsample_rs" # The path to place the comp

# Linting
[tool.ruff]
select = ["E", "F", "I"]
line-length = 88
extend-select = ["Q"]
ignore = ["E402", "F403"]
lint.select = ["E", "F", "I"]
lint.extend-select = ["Q"]
lint.ignore = ["E402", "F403"]

# Formatting
[tool.black]
Expand Down
Loading