27 строки
809 B
YAML
27 строки
809 B
YAML
# See http://pre-commit.com for more information
|
|
# See http://pre-commit.com/hooks.html for more hooks
|
|
repos:
|
|
- repo: https://github.com/antonbabenko/pre-commit-terraform
|
|
rev: v1.81.0
|
|
hooks:
|
|
- id: terraform_fmt
|
|
- id: terraform_docs
|
|
# - id: terraform_tflint
|
|
# - id: terraform_validate
|
|
# - id: terraform_tfsec
|
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
rev: v4.4.0
|
|
hooks:
|
|
- id: check-merge-conflict
|
|
- id: trailing-whitespace
|
|
# - id: check-yaml
|
|
- id: detect-private-key
|
|
- id: check-added-large-files
|
|
# - repo: git://github.com/ansible-community/ansible-lint
|
|
# rev: v5.3.2
|
|
# hooks:
|
|
# - id: ansible-lint
|
|
# - repo: git://github.com/markdownlint/markdownlint
|
|
# rev: v0.9.0
|
|
# hooks:
|
|
# - id: markdownlint |