Files
node-factorio-recipes/.prettierrc.json
2022-08-17 23:27:19 +02:00

19 lines
297 B
JSON

{
"printWidth": 100,
"tabWidth": 2,
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"jsxSingleQuote": true,
"trailingComma": "none",
"overrides": [
{
"files": "*.css",
"options": {
"singleQuote": false,
"tabWidth": 4
}
}
]
}