r-util-js/prettier.config.js

37 lines
578 B
JavaScript
Raw Normal View History

// https://prettier.io/docs/en/configuration.html
2026-03-16 17:58:57 +08:00
export default {
tabWidth: 4,
overrides: [
{
2026-03-16 17:58:57 +08:00
files: [
"*.js",
2026-04-20 17:54:26 +08:00
"*.cjs",
2026-03-16 17:58:57 +08:00
"*.mjs",
"*.jsx",
"*.ts",
"*.tsx",
"*.vue",
"*.json",
"*.yml",
"*.yaml",
],
options: {
tabWidth: 2,
},
},
{
2026-03-16 17:58:57 +08:00
files: ["*.html", "*.vue", "*.json"],
options: {
printWidth: 120,
},
},
{
files: ["*.ps1"],
options: {
endOfLine: "crlf",
tabWidth: 4,
},
},
],
};