Skip to content

Commit 2cbc4ea

Browse files
committed
Only run codespell on backend
1 parent 921172f commit 2cbc4ea

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/lint_python.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
- run: pip install bandit black codespell flake8 isort mypy safety
1010
- run: bandit --recursive --skip B101 . || true # B101 is assert statements
1111
- run: black --check backend/app
12-
- run: codespell # --ignore-words-list="" --skip=""
12+
- run: codespell backend/app
1313
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
1414
- run: cd backend/app && isort --check-only --profile black .
1515
- run: mypy --ignore-missing-imports . || true

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Fixed
1111
- Update poetry installer [#121](https://github.com/farmOS/farmOS-aggregator/issues/121)
12+
- Only run codespell on backend.
1213

1314
## v2.0.0-beta.2 2022-03-04
1415

0 commit comments

Comments
 (0)