File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -11,13 +11,13 @@ install-dev-requirements:
1111
1212.PHONY : format
1313format :
14- ruff --fix tsdownsample tests
14+ ruff format tsdownsample tests
1515 $(black )
1616 cargo fmt
1717
1818.PHONY : lint-python
1919lint-python :
20- ruff tsdownsample tests
20+ ruff check tsdownsample tests
2121 $(black ) --check --diff
2222
2323.PHONY : lint-rust
6666 rm -f .coverage
6767 rm -f .coverage.*
6868 rm -rf build
69- rm -f tsdownsample/* .so
69+ rm -f tsdownsample/* .so
Original file line number Diff line number Diff line change @@ -39,10 +39,10 @@ module-name = "tsdownsample._rust._tsdownsample_rs" # The path to place the comp
3939
4040# Linting
4141[tool .ruff ]
42- select = [" E" , " F" , " I" ]
4342line-length = 88
44- extend-select = [" Q" ]
45- ignore = [" E402" , " F403" ]
43+ lint.select = [" E" , " F" , " I" ]
44+ lint.extend-select = [" Q" ]
45+ lint.ignore = [" E402" , " F403" ]
4646
4747# Formatting
4848[tool .black ]
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use paste::paste;
55use pyo3:: prelude:: * ;
66use pyo3:: wrap_pymodule;
77
8- /// ------------------------- MACROS -------------------------
8+ // ------------------------- MACROS -------------------------
99
1010// Create macros to avoid duplicate code for the various resample functions over the
1111// different data types.
You can’t perform that action at this time.
0 commit comments