diff options
author | Matthew Fennell <matthew@fennell.dev> | 2024-01-08 22:46:06 +0000 |
---|---|---|
committer | Matthew Fennell <matthew@fennell.dev> | 2024-01-08 22:46:06 +0000 |
commit | cdac2a163024dfb6a9d49ef004bfa3f053d2e413 (patch) | |
tree | 0452e852ebe7fda4daf61072f21397891c179997 /.precious.toml | |
parent | c2476b0d1a5d31387205d69d7e38a9f5c4b0be0d (diff) |
Run yamllint on template files
I may in the future introduce yaml config file templates, since this is a
relatively common format for configuring services. If I do so, I should ensure
that yamllint gets run on these too.
Diffstat (limited to '.precious.toml')
-rw-r--r-- | .precious.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.precious.toml b/.precious.toml index dac87d0..fab63bc 100644 --- a/.precious.toml +++ b/.precious.toml @@ -36,7 +36,7 @@ type = "lint" [commands.yamllint] cmd = ["yamllint", "--strict"] -include = ["*.yaml"] +include = ["*.yaml*"] lint_failure_exit_codes = [1, 2] ok_exit_codes = [0] type = "lint" |