Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix args list for pre-commit hook #519

Merged
merged 2 commits into from
Feb 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ Added

Fixed
-----
- Typo in README.


1.7.2_ - 2023-07-12
Expand Down
9 changes: 6 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -662,9 +662,12 @@ other reformatter/linter tools you use to known compatible versions, for example
- id: darker
args:
- --isort
- --lint mypy
- --lint flake8
- --lint pylint
- --lint
- mypy
- --lint
- flake8
- --lint
- pylint
additional_dependencies:
- black==22.12.0
- isort==5.11.4
Expand Down
Loading