Skip to content

Commit

Permalink
fix unrelated small issues in order to check if that can fix the lint…
Browse files Browse the repository at this point in the history
…er issue
  • Loading branch information
xmnlab committed Dec 7, 2023
1 parent 58a26ba commit d923252
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
11 changes: 6 additions & 5 deletions .makim.yaml
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
version: 1.0
groups:
default:
clean:
targets:
clean:
tmp:
help: Clean unnecessary temporary files
shell: bash
run: |
rm -fr build/
rm -fr dist/
rm -fr .eggs/
find . -name '*.egg-info' -exec rm -fr {} +
find . -name '*.egg' -exec rm -f {} +
find . -name '*.pyc' -exec rm -f {} +
find . -name
find . -name '__pycache__' -exec rm -fr '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +{} +
find . -name '__pycache__' -exec rm -fr {} +
find . -name '*.pyo' -exec rm -f {} +
find . -name '*~' -exec rm -f {} +
rm -f .coverage
rm -fr htmlcov/
rm -fr .pytest_cache
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,8 @@ ignore = ["RUF012"]
exclude = [
"docs",
]

[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
Expand All @@ -79,8 +81,6 @@ select = [
"RUF", # Ruff-specific rules
"I001", # isort
]
# fixable = ["I001"]
fix = true

[tool.ruff.pydocstyle]
convention = "numpy"
Expand Down

0 comments on commit d923252

Please sign in to comment.