lecoffre-back/prettier.config.js
2023-02-17 11:06:01 +01:00

17 lines
283 B
JavaScript

module.exports = {
overrides: [
{
files: "src/**/*.ts",
options: {
tabWidth: 4,
useTabs: true,
singleQuote: false,
trailingComma: "all",
printWidth: 240,
endOfLine: "crlf",
semi: true,
},
},
],
};