add bicep
(not really working yet)
This commit is contained in:
parent
21240d6edb
commit
54f3e1bfb5
1 changed files with 5 additions and 4 deletions
|
|
@ -74,10 +74,6 @@
|
|||
return { lsp_fallback = true }
|
||||
end
|
||||
'';
|
||||
#formatOnSave = {
|
||||
# lspFallback = true;
|
||||
# timeoutMs = 500;
|
||||
#};
|
||||
notifyOnError = true;
|
||||
formattersByFt = {
|
||||
html = [
|
||||
|
|
@ -123,6 +119,7 @@
|
|||
]
|
||||
];
|
||||
terraform = ["terraform_fmt"];
|
||||
bicep = ["bicep"];
|
||||
bash = [
|
||||
"shellcheck"
|
||||
"shellharden"
|
||||
|
|
@ -131,6 +128,7 @@
|
|||
json = ["jq"];
|
||||
"_" = ["trim_whitespace"];
|
||||
};
|
||||
|
||||
formatters = {
|
||||
black = {
|
||||
command = "${lib.getExe pkgs.black}";
|
||||
|
|
@ -159,6 +157,9 @@
|
|||
shellharden = {
|
||||
command = "${lib.getExe pkgs.shellharden}";
|
||||
};
|
||||
bicep = {
|
||||
command = "${lib.getExe pkgs.bicep}";
|
||||
};
|
||||
#yamlfmt = {
|
||||
# command = "${lib.getExe pkgs.yamlfmt}";
|
||||
#};
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue