Commit e0c34e7 1 parent 0be894d commit e0c34e7 Copy full SHA for e0c34e7
File tree 2 files changed +19
-0
lines changed
2 files changed +19
-0
lines changed Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ repos:
17
17
hooks :
18
18
- id : end-of-file-fixer
19
19
- id : trailing-whitespace
20
+ - repo : https://github.com/adrienverge/yamllint
21
+ rev : v1.35.1
22
+ hooks :
23
+ - id : yamllint
24
+ args : ["--strict"]
20
25
- repo : https://github.com/astral-sh/ruff-pre-commit
21
26
# Ruff version.
22
27
rev : v0.8.3
Original file line number Diff line number Diff line change
1
+ # default config: https://yamllint.readthedocs.io/en/stable/configuration.html#default-configuration
2
+ extends : default
3
+
4
+ rules :
5
+ document-start : disable
6
+ line-length :
7
+ max : 999 # temporarily increase allowed line length
8
+ truthy :
9
+ # prevent treating GitHub Workflow "on" key as boolean value
10
+ check-keys : false
11
+
12
+ # temporarily disabled rules
13
+ indentation : disable
14
+ comments-indentation : disable
You can’t perform that action at this time.
0 commit comments