tiny-vue/.prettierrc

23 lines
431 B
Plaintext
Raw Permalink Normal View History

{
"semi": false,
"singleQuote": true,
"printWidth": 120,
"trailingComma": "none",
"quoteProps": "preserve",
"endOfLine": "auto",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"jsxSingleQuote": false,
"useTabs": false,
"tabWidth": 2,
"proseWrap": "preserve",
"arrowParens": "always",
"overrides": [
{
"files": ".prettierrc",
"options": {
"parser": "json"
}
}
]
}