mirror of
https://github.com/MaaAssistantArknights/MaaAssistantArknights.git
synced 2026-07-17 10:00:44 +08:00
51 lines
1.6 KiB
YAML
51 lines
1.6 KiB
YAML
default_install_hook_types: [pre-commit, prepare-commit-msg]
|
|
ci:
|
|
# 禁用 pre-commit.ci 自动运行,改用 GitHub Actions 定时任务
|
|
skip: [oxipng, clang-format, prettier, black, isort, markdownlint-cli2]
|
|
repos:
|
|
- repo: https://github.com/shssoichiro/oxipng
|
|
rev: v9.1.5
|
|
hooks:
|
|
- id: oxipng
|
|
name: PNG Image Compression
|
|
args: ["-q", "-o", "2", "-s", "--ng"]
|
|
- repo: https://github.com/pre-commit/mirrors-clang-format
|
|
rev: v21.1.1
|
|
hooks:
|
|
- id: clang-format
|
|
name: Clang-Format (MaaCore)
|
|
files: ^src/MaaCore/.*
|
|
args: ["--assume-filename", ".clang-format"]
|
|
- repo: https://github.com/rbubley/mirrors-prettier
|
|
rev: v3.6.2
|
|
hooks:
|
|
- id: prettier
|
|
name: Prettier (Config Files)
|
|
files: ^((\.github/ISSUE_TEMPLATE|resource|src|tools)/.*|\.pre-commit-config\.yaml|package-definition\.json)
|
|
types_or:
|
|
- yaml
|
|
- json
|
|
- id: prettier
|
|
name: Prettier (Documentation)
|
|
files: ^docs/.*
|
|
- repo: https://github.com/psf/black
|
|
rev: 25.9.0
|
|
hooks:
|
|
- id: black
|
|
name: Black Formatter (Python)
|
|
- repo: https://github.com/pycqa/isort
|
|
rev: 6.0.1
|
|
hooks:
|
|
- id: isort
|
|
name: Isort (Python)
|
|
args: ["--profile", "black", "--filter-files"]
|
|
- repo: https://github.com/DavidAnson/markdownlint-cli2
|
|
rev: v0.18.1
|
|
hooks:
|
|
- id: markdownlint-cli2
|
|
name: MarkdownLint (Documentation)
|
|
files: ^docs/.*|^README\.md$
|
|
types:
|
|
- markdown
|
|
args: ["--fix", "--config", "docs/.markdownlint.yaml"]
|