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

Add more details to the pre-commit config #338

Merged
merged 1 commit into from
Nov 25, 2024
Merged
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
6 changes: 4 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ repos:
hooks:
- id: vulture
name: run vulture
description: find dead Python code
- repo: https://github.com/psf/black-pre-commit-mirror
rev: 24.10.0
hooks:
Expand Down Expand Up @@ -95,7 +96,7 @@ repos:
hooks:
- id: markdownlint
name: run markdownlint
description: Check Markdown files with markdownlint
description: check Markdown files with markdownlint
args: [--config=.github/linters/.markdown-lint.yml]
types: [markdown]
files: \.md$
Expand All @@ -111,7 +112,7 @@ repos:
hooks:
- id: yamllint
name: run yamllint
description: Check YAML files with yamllint
description: check YAML files with yamllint
args: [--strict, -c=.github/linters/.yaml-lint.yml]
exclude: ^config/layout/attribute/style/value\.yaml$
types: [yaml]
Expand All @@ -131,3 +132,4 @@ repos:
hooks:
- id: isort
name: run isort (python)
description: a Python utility / library to sort imports