mirror of
https://github.com/SinTan1729/ReVancedBuilder.git
synced 2024-12-26 12:48:36 -06:00
30 lines
864 B
YAML
30 lines
864 B
YAML
# See https://pre-commit.com for more information
|
|
# See https://pre-commit.com/hooks.html for more hooks
|
|
---
|
|
# fail_fast: true
|
|
minimum_pre_commit_version: 1.18.1
|
|
repos:
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v2.3.0
|
|
hooks:
|
|
- id: trailing-whitespace
|
|
exclude: ".(md|rst)$"
|
|
- id: end-of-file-fixer
|
|
- id: check-merge-conflict
|
|
- id: mixed-line-ending
|
|
- id: check-added-large-files
|
|
- repo: https://github.com/jumanjihouse/pre-commit-hooks
|
|
rev: 2.1.5
|
|
hooks:
|
|
- id: git-check # Configure in .gitattributes
|
|
- id: shellcheck
|
|
exclude: ".bats$"
|
|
args: [ "-e", "SC2068" ]
|
|
- id: shfmt
|
|
exclude: ".bats$"
|
|
args: ["-i", "4"]
|
|
- repo: https://github.com/Lucas-C/pre-commit-hooks
|
|
rev: v1.1.7
|
|
hooks:
|
|
- id: remove-crlf
|
|
exclude: ".bat$"
|