Files
react-template-esbuild/.prettierrc.js
2025-09-18 19:02:11 +03:00

37 lines
569 B
JavaScript

module.exports = {
useTabs: false,
tabWidth: 2,
singleQuote: false,
trailingComma: "all",
semi: true,
arrowParens: "always",
endOfLine: "lf",
overrides: [
{
files: ["*.ts"],
options: {
parser: "typescript",
},
},
{
files: ["*.tsx"],
options: {
parser: "typescript",
jsxSingleQuote: false,
}
},
{
files: ["*.scss"],
options: {
parser: "scss",
}
},
{
files: ["*.json"],
options: {
parser: "json",
},
},
],
};