File tree Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Expand file tree Collapse file tree 2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change 38
38
- name : Confirm script formatting
39
39
run : |
40
40
make ensure-formatted
41
+
42
+ yamllint :
43
+ runs-on : ubuntu-latest
44
+ steps :
45
+ - uses : actions/checkout@v4
46
+ - name : Lint YAML files
47
+ run : yamllint generated/ templates/data.yaml
Original file line number Diff line number Diff line change
1
+ rules:
2
+ braces: enable
3
+ brackets: enable
4
+ colons: enable
5
+ commas: enable
6
+ comments:
7
+ level: warning
8
+ comments-indentation:
9
+ level: warning
10
+ document-end: disable
11
+ document-start: disable
12
+ empty-lines: enable
13
+ empty-values:
14
+ forbid-in-block-mappings: false
15
+ hyphens: enable
16
+ key-duplicates: enable
17
+ key-ordering: disable
18
+ line-length: disable
19
+ new-line-at-end-of-file: enable
20
+ new-lines: enable
21
+ octal-values: enable
22
+ quoted-strings: disable
23
+ trailing-spaces: enable
24
+ truthy:
25
+ level: warning
26
+ check-keys: false
27
+ indentation:
28
+ spaces: consistent
29
+ indent-sequences: true
You can’t perform that action at this time.
0 commit comments