Skip to content

Commit

Permalink
ci: simplify
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinBernstorff committed Oct 27, 2023
1 parent 249592b commit abae734
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
4 changes: 3 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,9 @@ test: ## Run tests

lint: ## Format code
ruff format .
ruff . --fix --extend-select F401
ruff . --fix \
--extend-select F401 \
--extend-select F841

type-check: ## Type-check code
pyright $(SRC_PATH)
Expand Down
5 changes: 0 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ select = [
"PLW",
"PT",
"UP",
"Q",
"PTH",
"RSE",
"RET",
Expand All @@ -93,10 +92,6 @@ ignore = [
"RET504",
"COM812",
"COM819",
"Q000",
"Q001",
"Q002",
"Q003",
"W191",
]
ignore-init-module-imports = true
Expand Down

0 comments on commit abae734

Please sign in to comment.