lecoffre-front/prettier.config.js
hugolxt 910a5820b0
🚧 Init front repo lecoffre (#1)
Initialization of the front repository
2023-03-15 14:38:50 +01:00

18 lines
351 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,
},
},
],
};