Skip to content

Commit

Permalink
plugins/conform: fix deprecation notice
Browse files Browse the repository at this point in the history
  • Loading branch information
khaneliman committed Aug 23, 2024
1 parent ce9a0e0 commit 12e5f03
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions packages/khanelivim/plugins/conform.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,12 +97,12 @@
css = [ "stylelint" ];
fish = [ "fish_indent" ];
fsharp = [ "fantomas" ];
javascript = [
[
"prettierd"
"prettier"
]
];
javascript = {
__unkeyed-1 = "prettierd";
__unkeyed-2 = "prettier";
timeout_ms = 2000;
stop_after_first = true;
};
json = [ "jq" ];
lua = [ "stylua" ];
markdown = [ "deno_fmt" ];
Expand All @@ -121,12 +121,12 @@
swift = [ "swift_format" ];
terraform = [ "terraform_fmt" ];
toml = [ "taplo" ];
typescript = [
[
"prettierd"
"prettier"
]
];
typescript = {
__unkeyed-1 = "prettierd";
__unkeyed-2 = "prettier";
timeout_ms = 2000;
stop_after_first = true;
};
xml = [
"xmlformat"
"xmllint"
Expand Down

0 comments on commit 12e5f03

Please sign in to comment.