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", }, }, ], };