mirror of
https://github.com/restincode/restincode.git
synced 2026-09-12 01:29:29 +02:00
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.
31 lines
1.1 KiB
YAML
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
|