webpack/.prettierrc.js

25 lines
316 B
JavaScript
Raw Permalink Normal View History

"use strict";
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: "always",
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
};