webpack/.prettierrc.js

23 lines
300 B
JavaScript
Raw Normal View History

2018-03-26 22:56:10 +08:00
module.exports = {
printWidth: 80,
useTabs: true,
tabWidth: 2,
2020-03-29 06:10:15 +08:00
trailingComma: "none",
arrowParens: "avoid",
overrides: [
{
files: "*.json",
options: {
parser: "json",
useTabs: false
}
},
{
2025-05-16 21:49:07 +08:00
files: "*.{cts,mts,ts}",
options: {
parser: "typescript"
}
}
]
2018-03-26 22:56:10 +08:00
};