Created
July 19, 2023 16:32
-
-
Save stuartellis/e2e840da2513975cb5e096b9389893c2 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# See https://pre-commit.com for more information | |
# See https://pre-commit.com/hooks.html for more hooks | |
repos: | |
- repo: https://github.com/adrienverge/yamllint | |
rev: v1.32.0 | |
hooks: | |
- args: | |
- --config-file | |
- .yamllint.yaml | |
id: yamllint | |
- repo: https://github.com/pre-commit/pre-commit-hooks | |
rev: v4.4.0 | |
hooks: | |
- id: check-added-large-files | |
- id: check-json | |
exclude: .devcontainer/devcontainer.json | |
- id: check-merge-conflict | |
- id: end-of-file-fixer | |
- id: trailing-whitespace |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
extends: default | |
ignore: | |
- terraform1/stacks/definitions/*/.terraform/* | |
rules: | |
comments: | |
ignore: | | |
*.cc.yml | |
document-start: | |
ignore: | | |
.gitlab-ci.yml | |
.pre-commit-config.yaml | |
*.cc.yml | |
line-length: | |
ignore: | | |
.gitlab-ci.yml |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment