restincode/.pre-commit-config.yaml
mauvehed 7c49183e68 chore(pre-commit-config.yaml): update pre-commit hooks and configuration
The pre-commit hooks have been updated to the latest versions. The following changes were made:
- The `check-yaml` hook now checks for proper YAML formatting.
- The `check-json` hook now checks for proper JSON formatting.
- A new hook `no-commit-to-branch` has been added to prevent local commits to the `main` branch.
- The `autofix_prs` configuration under `ci` has been set to `false`.

These changes improve the code quality and enforce stricter formatting
standards. The addition of the `no-commit-to-branch` hook helps prevent
accidental commits to the `main` branch.
2023-07-30 18:17:37 -05:00

31 lines
1.1 KiB
YAML

# .pre-commit-config.yaml
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.4.0 # use `pre-commit autoupdate` to get the latest rev
hooks:
- id: check-yaml # check for proper yaml formatting
- id: check-json # check for proper json formatting
- id: no-commit-to-branch
args: ['--branch', 'main'] # prevent local commits to main branch
# - id: pretty-format-json
# - id: end-of-file-fixer
# - id: trailing-whitespace
#- repo: https://github.com/pre-commit/mirrors-csslint
# rev: v1.0.5 # use `pre-commit autoupdate` to get the latest rev
# hooks:
# - id: csslint
#- repo: https://github.com/thibaudcolas/curlylint
# rev: v0.13.1 # use `pre-commit autoupdate` to get the latest rev
# hooks:
# - id: curlylint
#- repo: https://github.com/klieret/jekyll-relative-url-check
# rev: v2.0.1 # use `pre-commit autoupdate` to get the latest rev
# hooks:
# - id: jekyll-relative-url-check-html
# - id: jekyll-relative-url-check-markdown
#- repo: https://github.com/pre-commit/mirrors-prettier
# rev: v2.7.1
# hooks:
# - id: prettier
ci:
autofix_prs: false