Skip to content

Latest commit

 

History

History
50 lines (33 loc) · 1.38 KB

pre-commits.md

File metadata and controls

50 lines (33 loc) · 1.38 KB

Pre-commits for terraform

You should add pre-commits to your terraform repositories to have a higher minimum quality over your commits.

Dependencies

In order to use pre-commit with all recommanded features, you will need to install some tools

Installation

  1. Install the pre-commit tool

    pip install pre-commit
  2. Install the git hook scripts

    pre-commit install
  3. Copy the .pre-commit-config.yaml file at the root of your repository

Usage

Pre-commit will only check files pending for commit.

```bash
# With one file
git add myfile.tf
git commit # will trigger pre-commit scripts

# To trigger it manually
pre-commit

# Run on all changed files
pre-commit run -a
```

Update

Run pre-commit autoupdate in order to bump pre-commit repositories tag versions