Added yamllint hook

* Added yamllint hook v1.25.0
    * disabled line-length warning by default
    * fixed lint recommendations to file
This commit is contained in:
Jason Hollis 2020-12-06 12:20:30 -05:00
parent 91d9e5f79e
commit 9cbfcde81a

View file

@ -1,3 +1,5 @@
---
repos:
- repo: https://github.com/pre-commit/pre-commit-hooks
rev: v3.3.0
@ -48,6 +50,11 @@ repos:
hooks:
- id: mypy
exclude: ^testing/resources/
- repo: https://github.com/adrienverge/yamllint
rev: v1.25.0
hooks:
- id: yamllint
args: ['-d {extends: default, rules: {line-length: disable}}', '-s']
- repo: meta
hooks:
- id: check-hooks-apply