Skip to content

Commit

Permalink
fix: fixed typos in project config
Browse files Browse the repository at this point in the history
  • Loading branch information
borolepratik committed Mar 19, 2024
1 parent f068503 commit e4fae93
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,25 +15,25 @@ repos:
language: system
pass_filenames: false
stages: [pre-commit, pre-push]
files: ^(app/|poetry.lock|run.py/)$
files: ^(app/|poetry.lock|run.py)
- id: run-linters
name: Run linters
entry: poetry poe linters
language: system
pass_filenames: false
stages: [pre-commit, pre-push]
files: ^(app/|poetry.lock|run.py/)$
files: ^(app/|poetry.lock|run.py)
- id: run-typings
name: Run typings
entry: poetry poe typings
language: system
pass_filenames: false
stages: [pre-commit, pre-push]
files: ^(app/|poetry.lock|run.py/)$
files: ^(app/|poetry.lock|run.py)
- id: run-tests
name: Run tests
entry: poetry poe tests
language: system
pass_filenames: false
stages: [pre-push]
files: ^(app/|poetry.lock|run.py|tests/)$
files: ^(app/|poetry.lock|run.py|tests/)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ black = "black run.py app"
isort = "isort run.py app"
formatters = ["autoflake", "isort", "black"]
git-hooks-setup = "pre-commit install --hook-type commit-msg --hook-type pre-push --hook-type pre-commit"
git-hooks-upate = "pre-commit autoupdate"
git-hooks-update = "pre-commit autoupdate"
linters = ["pylint"]
pylint = "pylint run.py app"
tests = "pytest -rpPfE tests"
Expand Down

0 comments on commit e4fae93

Please sign in to comment.