Skip to content

Commit

Permalink
feat(#3035): add .yamllint.yml config
Browse files Browse the repository at this point in the history
  • Loading branch information
slry committed Apr 21, 2024
1 parent b879df9 commit a8157fe
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/yamllint.yml
@@ -1,4 +1,5 @@
---

name: yamllint
'on':
push:
Expand All @@ -13,3 +14,5 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: ibiqlik/action-yamllint@v3
with:
config-file: .yamllint.yml
12 changes: 12 additions & 0 deletions .yamllint.yml
@@ -0,0 +1,12 @@
---

extends: default

rules:
line-length: disable
brackets:
min-spaces-inside: 1
max-spaces-inside: 2
truthy:
level: warning
allowed-values: [ 'on', 'true', 'false', 'yes', 'no' ]

0 comments on commit a8157fe

Please sign in to comment.