lecoffre-front/prettier.config.js
2023-04-17 11:25:08 +02:00

25 lines
336 B
JavaScript

module.exports = {
overrides: [
{
files: [
"src//*.ts",
"src//.tsx",
"src/**/.scss",
"./*.js",
],
options: {
tabWidth: 4,
useTabs: true,
singleQuote: false,
trailingComma:
"all",
printWidth: 140,
endOfLine:
"lf",
semi: true,
bracketSameLine: true,
},
},
],
};