Browse Source
Adds YAML linting configuration and disables unnecessary linters to streamline the CI/CD process and reduce noise from irrelevant checks.pull/4854/head
2 changed files with 25 additions and 2 deletions
@ -0,0 +1,25 @@ |
|||
extends: default |
|||
|
|||
rules: |
|||
document-start: disable |
|||
truthy: disable |
|||
|
|||
line-length: |
|||
max: 200 |
|||
level: warning |
|||
allow-non-breakable-words: true |
|||
allow-non-breakable-inline-mappings: true |
|||
|
|||
braces: |
|||
min-spaces-inside: 0 |
|||
max-spaces-inside: 1 |
|||
min-spaces-inside-empty: 0 |
|||
max-spaces-inside-empty: 0 |
|||
|
|||
empty-lines: |
|||
max: 2 |
|||
max-start: 0 |
|||
max-end: 0 |
|||
|
|||
comments: |
|||
min-spaces-from-content: 1 |
|||
Loading…
Reference in new issue