Created
May 11, 2022 03:16
-
-
Save shollingsworth/d92a4fc1124ceb7790586f1c3ca44c81 to your computer and use it in GitHub Desktop.
pre commit template
This file contains hidden or 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/pre-commit/pre-commit-hooks | |
| rev: v3.2.0 | |
| hooks: | |
| - id: trailing-whitespace | |
| - id: end-of-file-fixer | |
| - id: check-yaml | |
| - id: check-added-large-files | |
| - repo: https://github.com/antonbabenko/pre-commit-terraform | |
| rev: v1.71.0 | |
| hooks: | |
| - id: terraform_fmt | |
| - id: terraform_docs | |
| - id: terraform_validate | |
| - repo: https://github.com/psf/black | |
| rev: 22.3.0 | |
| hooks: | |
| - id: black | |
| - repo: https://github.com/pre-commit/mirrors-prettier | |
| rev: v2.6.2 | |
| hooks: | |
| - id: prettier |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment