Skip to content

Commit

Permalink
fix(ci): deduplicate pre-commit run
Browse files Browse the repository at this point in the history
  • Loading branch information
sujuka99 committed Sep 27, 2023
1 parent fcfbcaf commit 049a3db
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@ repos:
require_serial: true # run once for all files
- id: ruff-ci
name: ruff-ci
entry: ruff check .
args: [ --config, pyproject.toml, --output-format, text, --no-fix]
entry: ruff
args: [ check, ".", --config, pyproject.toml, --output-format, text, --no-fix]
language: system
types_or: [python]
require_serial: true # run once for all files
pass_filenames: false
stages: [manual]
- repo: local
hooks:
Expand Down

0 comments on commit 049a3db

Please sign in to comment.