fix(rules/bootstrap): Format yaml

This commit is contained in:
2025-12-29 13:23:04 +01:00
parent f81a4b2732
commit 957526a6bc
22 changed files with 2142 additions and 2044 deletions
+8 -3
View File
@@ -5,6 +5,8 @@ let
globalExcludes = [
"nix/default.nix"
"attic"
"vcluster"
".*vendor"
".*chart/.*"
".*schema.json"
@@ -32,6 +34,7 @@ pre-commit.run {
enable = true;
excludes = [
"vcluster/"
"attic/"
];
args = [
"-x"
@@ -41,15 +44,17 @@ pre-commit.run {
};
yamllint = {
enable = false;
enable = true;
excludes = [
"attic/"
"charts/templates/"
"charts/charts/"
"charts/"
"values/"
"vcluster/"
];
settings = {
strict = true;
configData = ''{ extends: default, rules: { document-start: disable, line-length: {max: 165} } }'';
configData = ''{ extends: default, rules: { document-start: disable, line-length: {max: 300} } }'';
};
};