feat: Remove support for stylish-haskell formatter

This commit is contained in:
♥ Minnie ♥ 2025-02-19 20:44:42 +08:00
parent bbfc2f6f47
commit ef3a9dbc2c
Signed by: jasmine
GPG key ID: 8563E358D4E8040E

View file

@ -18,7 +18,6 @@
# Map of filetype to formatters. # Map of filetype to formatters.
formatters_by_ft = { formatters_by_ft = {
c = ["clang-format"]; c = ["clang-format"];
haskell = ["stylish-haskell"];
lua = ["stylua"]; lua = ["stylua"];
nix = ["alejandra"]; nix = ["alejandra"];
}; };
@ -31,9 +30,6 @@
clang-format = { clang-format = {
command = lib.getExe' pkgs.clang-tools "clang-format"; command = lib.getExe' pkgs.clang-tools "clang-format";
}; };
stylish-haskell = {
command = lib.getExe pkgs.stylish-haskell;
};
stylua = { stylua = {
command = lib.getExe pkgs.stylua; command = lib.getExe pkgs.stylua;
}; };