webpack/.prettierrc.js

25 lines
316 B
JavaScript

"use strict";
module.exports = {
printWidth: 80,
useTabs: true,
tabWidth: 2,
trailingComma: "none",
arrowParens: "always",
overrides: [
{
files: "*.json",
options: {
parser: "json",
useTabs: false
}
},
{
files: "*.{cts,mts,ts}",
options: {
parser: "typescript"
}
}
]
};