Files
threetwo-acquisition-service/.prettierrc.json
2023-08-31 21:44:37 -05:00

26 lines
510 B
JSON

{
"printWidth": 100,
"tabWidth": 4,
"useTabs": false,
"semi": true,
"singleQuote": false,
"trailingComma": "all",
"bracketSpacing": true,
"bracketSameLine": false,
"arrowParens": "always",
"overrides": [
{
"files": ["*.html"],
"options": { "parser": "vue" }
},
{
"files": ["*.{cjs,mjs,js,jsx,ts,tsx,d.ts,css,html,graphql}"],
"options": { "useTabs": true }
},
{
"files": ["*.{json,yml,yaml}"],
"options": { "tabWidth": 2 }
}
]
}