SpaceNinjaServer/.prettierrc

28 lines
620 B
Plaintext
Raw Permalink Normal View History

2023-05-19 15:22:48 -03:00
{
2023-05-23 20:36:54 -04:00
"tabWidth": 4,
2023-05-19 15:22:48 -03:00
"useTabs": false,
"endOfLine": "auto",
"trailingComma": "none",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": false,
"printWidth": 120,
"proseWrap": "never",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleQuote": false,
"vueIndentScriptAndStyle": true,
"arrowParens": "avoid",
2023-06-02 00:20:49 -03:00
"bracketSpacing": true,
"overrides": [
{
"files": "*.json",
"options": {
"tabWidth": 2,
"printWidth": 200
}
}
]
2023-05-19 15:22:48 -03:00
}