Skip to content

Commit

Permalink
update(tooling): use YAML proper list syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Guts committed Aug 8, 2024
1 parent b0f8617 commit d96769f
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,14 @@ repos:
- id: check-added-large-files
- id: check-case-conflict
- id: check-yaml
args: [--unsafe]
args:
- --unsafe
- id: detect-private-key
- id: end-of-file-fixer
- id: fix-byte-order-marker
- id: trailing-whitespace
args: [--markdown-linebreak-ext=md]
args:
- --markdown-linebreak-ext=md

- repo: https://github.com/asottile/pyupgrade
rev: v3.17.0
Expand All @@ -29,7 +31,8 @@ repos:
rev: "v0.5.6"
hooks:
- id: ruff
args: ["--fix-only"]
args:
- --fix-only

- repo: https://github.com/psf/black
rev: 24.8.0
Expand All @@ -40,15 +43,18 @@ repos:
rev: 5.13.2
hooks:
- id: isort
args: ["--profile", "black", "--filter-files"]
args:
- --profile
- black
- --filter-files

- repo: https://github.com/pycqa/flake8
rev: 7.1.1
hooks:
- id: flake8
language: python
types: [python]
args: ["--select=E9,F63,F7,F82"]
args:
- --select=E9,F63,F7,F82

- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.41.0
Expand Down

0 comments on commit d96769f

Please sign in to comment.