68 lines
1.7 KiB
YAML
68 lines
1.7 KiB
YAML
default_stages: [pre-commit, manual]
|
|
exclude: ^(dist|node_modules)/
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: check-yaml
|
|
- id: check-json
|
|
- id: check-added-large-files
|
|
args: [--enforce-all]
|
|
exclude: ^dist/index\.js$
|
|
- id: detect-private-key
|
|
- id: check-case-conflict
|
|
- id: check-symlinks
|
|
- id: pretty-format-json
|
|
args: [--autofix, --no-sort-keys, --no-ensure-ascii]
|
|
- id: check-merge-conflict
|
|
- id: no-commit-to-branch
|
|
stages: [pre-commit]
|
|
|
|
- repo: https://github.com/macisamuele/language-formatters-pre-commit-hooks
|
|
rev: v2.16.0
|
|
hooks:
|
|
- id: pretty-format-yaml
|
|
args: [--autofix]
|
|
|
|
- repo: https://github.com/pre-commit/mirrors-prettier
|
|
rev: v4.0.0-alpha.8
|
|
hooks:
|
|
- id: prettier
|
|
types_or: [css, javascript]
|
|
|
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
|
rev: 0.37.2
|
|
hooks:
|
|
- id: check-renovate
|
|
- id: check-github-actions
|
|
stages: [manual]
|
|
- id: check-github-workflows
|
|
stages: [manual]
|
|
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v6.0.0
|
|
hooks:
|
|
- id: end-of-file-fixer
|
|
exclude: (.txt$|.ipynb$|README.md$)
|
|
- id: trailing-whitespace
|
|
exclude: (.txt$|README.md$)
|
|
- id: mixed-line-ending
|
|
args: [--fix=lf]
|
|
|
|
- repo: local
|
|
hooks:
|
|
- id: build
|
|
name: rebuild-distribution
|
|
entry: npm run build
|
|
language: system
|
|
files: ^(index\.js|monitor\.js|package\.json|package-lock\.json)$
|
|
pass_filenames: false
|
|
stages: [pre-commit]
|
|
- id: add-dist
|
|
name: stage-distribution
|
|
entry: git add dist/
|
|
language: system
|
|
files: ^(index\.js|monitor\.js|package\.json|package-lock\.json)$
|
|
pass_filenames: false
|
|
stages: [pre-commit]
|