Added yamllint configuration

This commit is contained in:
Salvador E. Tropea 2022-02-16 18:30:57 -03:00
parent ee74b1572b
commit 47d87663c9
3 changed files with 7 additions and 4 deletions

View File

@ -38,7 +38,7 @@ repos:
rev: v1.23.0
hooks:
- id: yamllint
args: [--no-warnings]
args: [-c, .yamllint]
- repo: https://github.com/asottile/pyupgrade
rev: v2.31.0
hooks:

6
.yamllint Normal file
View File

@ -0,0 +1,6 @@
extends: default
rules:
line-length:
max: 128
level: warning

View File

@ -2,15 +2,12 @@
branch = main
[check-yaml]
unsafe = True
[pyupgrade]
py36-plus = True
[black]
safe = True
quiet = True
line-length = 127