Disable yaml key order linting

This commit is contained in:
Jakob Lechner 2023-07-12 11:23:57 +00:00
parent 98bcfeaa92
commit 6fe042763d
No known key found for this signature in database
GPG key ID: 996082EFB5906C10

View file

@ -161,6 +161,11 @@
# YAML
yamlls = {
cmd = [ "${pkgs.nodePackages.yaml-language-server}/bin/yaml-language-server" "--stdio" ];
settings = {
yaml = {
keyOrdering = false;
};
};
};
}
)