Files
Minesweeper/.prettierrc
T
2025-07-03 12:42:45 +02:00

24 lines
395 B
Plaintext

{
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"endOfLine": "lf",
"jsxSingleQuote": true,
"overrides": [
{
"files": "*.scss",
"options": {
"singleQuote": false
}
}
],
"printWidth": 500,
"proseWrap": "always",
"useTabs": true,
"semi": true,
"singleAttributePerLine": true,
"singleQuote": true,
"tabWidth": 4,
"trailingComma": "all"
}