Skip to content

Commit 74aae8a

Browse files
committed
Configures and disables linters
Adds YAML linting configuration and disables unnecessary linters to streamline the CI/CD process and reduce noise from irrelevant checks.
1 parent 11776f7 commit 74aae8a

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

.github/linters/.yaml-lint.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
extends: default
2+
3+
rules:
4+
document-start: disable
5+
truthy: disable
6+
7+
line-length:
8+
max: 200
9+
level: warning
10+
allow-non-breakable-words: true
11+
allow-non-breakable-inline-mappings: true
12+
13+
braces:
14+
min-spaces-inside: 0
15+
max-spaces-inside: 1
16+
min-spaces-inside-empty: 0
17+
max-spaces-inside-empty: 0
18+
19+
empty-lines:
20+
max: 2
21+
max-start: 0
22+
max-end: 0
23+
24+
comments:
25+
min-spaces-from-content: 1

.github/workflows/action-super-linter.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,5 +49,3 @@ jobs:
4949
VALIDATE_SHELL_SHFMT: false
5050
VALIDATE_TERRAFORM_TERRASCAN: false
5151
VALIDATE_YAML_PRETTIER: false
52-
53-

0 commit comments

Comments
 (0)