fix: disable document-start rule for yamllint

This commit is contained in:
Dmitriy Kholkin 2025-03-10 19:04:49 +03:00
parent 65db257b33
commit 6d85bb5bdb
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 14 additions and 9 deletions

3
.yamllint Normal file
View File

@ -0,0 +1,3 @@
extends: default
rules:
document-start: disable

View File

@ -114,13 +114,11 @@
actionlint.enable = true;
deadnix.enable = true;
flake-checker.enable = true;
lychee = {
enable = true;
args = [
"--exclude"
"^https://.+\\.backblazeb2\\.com"
];
};
lychee.enable = true;
lychee.args = [
"--exclude"
"^https://.+\\.backblazeb2\\.com"
];
markdownlint.enable = true;
nixfmt-rfc-style.enable = true;
ripsecrets.enable = true;
@ -128,9 +126,13 @@
typos.enable = true;
yamlfmt.enable = true;
yamllint.enable = true;
yamllint.args = [
"--config-file"
".yamllint"
"--format"
"parsable"
];
};
# https://github.com/cachix/devenv/issues/528
containers = { };
};
};
}