mirror of
https://github.com/codespell-project/codespell.git
synced 2025-05-17 07:27:03 +08:00
![pre-commit-ci[bot]](/assets/img/avatar_default.png)
updates: - [github.com/adrienverge/yamllint.git: v1.37.0 → v1.37.1](https://github.com/adrienverge/yamllint.git/compare/v1.37.0...v1.37.1) - [github.com/astral-sh/ruff-pre-commit: v0.11.4 → v0.11.8](https://github.com/astral-sh/ruff-pre-commit/compare/v0.11.4...v0.11.8)
93 lines
2.7 KiB
YAML
93 lines
2.7 KiB
YAML
---
|
|
files: ^(.*\.(py|json|md|sh|yaml|yml|in|cfg|txt|rst|toml|precommit-toml|wordlist))$
|
|
exclude: ^(\.[^/]*cache/.*)$
|
|
repos:
|
|
- repo: https://github.com/executablebooks/mdformat
|
|
# Do this before other tools "fixing" the line endings
|
|
rev: 0.7.22
|
|
hooks:
|
|
- id: mdformat
|
|
name: Format Markdown
|
|
entry: mdformat # Executable to run, with fixed options
|
|
language: python
|
|
types: [markdown]
|
|
args: [--wrap, "75", --number]
|
|
additional_dependencies:
|
|
- mdformat-toc
|
|
- mdformat-beautysh
|
|
# -mdformat-shfmt
|
|
# -mdformat-tables
|
|
- mdformat-config
|
|
- mdformat-black
|
|
- mdformat-web
|
|
- mdformat-gfm
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks-markup
|
|
rev: v1.0.1
|
|
hooks:
|
|
- id: rst-linter
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v5.0.0
|
|
hooks:
|
|
- id: no-commit-to-branch
|
|
args: [--branch, main]
|
|
- id: check-yaml
|
|
args: [--unsafe]
|
|
- id: debug-statements
|
|
- id: end-of-file-fixer
|
|
- id: trailing-whitespace
|
|
- id: check-json
|
|
- id: mixed-line-ending
|
|
- id: check-builtin-literals
|
|
- id: check-ast
|
|
- id: check-merge-conflict
|
|
- id: check-executables-have-shebangs
|
|
- id: check-shebang-scripts-are-executable
|
|
- id: check-docstring-first
|
|
- id: fix-byte-order-marker
|
|
- id: check-case-conflict
|
|
- id: check-toml
|
|
- id: file-contents-sorter
|
|
files: dictionary.*\.txt$|\.wordlist$
|
|
args: [--ignore-case]
|
|
- repo: https://github.com/adrienverge/yamllint.git
|
|
rev: v1.37.1
|
|
hooks:
|
|
- id: yamllint
|
|
args:
|
|
- --no-warnings
|
|
- -d
|
|
- "{extends: relaxed, rules: {line-length: {max: 90}}}"
|
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
rev: v0.11.8
|
|
hooks:
|
|
- id: ruff
|
|
- id: ruff-format
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v4.0.0-alpha.8
|
|
hooks:
|
|
- id: prettier
|
|
types_or: [yaml, markdown, html, css, scss, javascript, json]
|
|
- repo: https://github.com/codespell-project/codespell
|
|
rev: v2.4.1
|
|
hooks:
|
|
- id: codespell
|
|
args: [--toml, pyproject-codespell.precommit-toml]
|
|
additional_dependencies:
|
|
- tomli
|
|
- repo: https://github.com/abravalheri/validate-pyproject
|
|
rev: v0.24.1
|
|
hooks:
|
|
- id: validate-pyproject
|
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
rev: v1.15.0
|
|
hooks:
|
|
- id: mypy
|
|
args: ["--config-file", "pyproject.toml"]
|
|
additional_dependencies:
|
|
- pytest
|
|
- tomli
|
|
- types-chardet
|
|
|
|
ci:
|
|
autoupdate_schedule: monthly
|