style(flake): Add even more formatters

This commit is contained in:
Benedikt Peetz 2024-03-26 17:23:30 +01:00
parent b85650e911
commit fa6b046780
Signed by: bpeetz
GPG Key ID: A5E94010C3A642AD
1 changed files with 49 additions and 7 deletions

View File

@ -135,15 +135,57 @@
indent_size = 4; indent_size = 4;
}; };
shellcheck.enable = true; shellcheck.enable = true;
prettier = {
settings = {
arrowParens = "always";
bracketSameLine = false;
bracketSpacing = true;
editorconfig = true;
embeddedLanguageFormatting = "auto";
endOfLine = "lf";
# experimentalTernaries = false;
htmlWhitespaceSensitivity = "css";
insertPragma = false;
jsxSingleQuote = true;
printWidth = 80;
proseWrap = "always";
quoteProps = "consistent";
requirePragma = false;
semi = true;
singleAttributePerLine = true;
singleQuote = true;
trailingComma = "all";
useTabs = false;
vueIndentScriptAndStyle = false;
tabWidth = 4;
overrides = {
files = ["*.js"];
options.tabwidth = 2;
};
};
};
stylua.enable = true;
ruff = {
enable = true;
format = true;
};
taplo.enable = true;
}; };
settings.formatter = { settings = {
clang-format = { global.excludes = ["CHANGELOG.md"];
options = ["--style" "GNU"]; formatter = {
}; clang-format = {
rustfmt = { options = ["--style" "GNU"];
# also add the Trixy files };
includes = ["*.tri"]; shfmt = {
includes = ["*.bash"];
};
rustfmt = {
# also add the Trixy files
includes = ["*.tri"];
};
}; };
}; };
} }