feat: prettier task supported

This commit is contained in:
kunkka 2020-10-22 19:17:20 +08:00
parent ec525621cd
commit 68637ccab6
41 changed files with 1713 additions and 1409 deletions

13
.prettierrc Normal file
View file

@ -0,0 +1,13 @@
{
"trailingComma": "es5",
"tabWidth": 2,
"useTabs": false,
"semi": true,
"singleQuote": false,
"jsxSingleQuote": true,
"jsxBracketSameLine": false,
"arrowParens": "always",
"endOfLine": "lf",
"bracketSpacing": true,
"htmlWhitespaceSensitivity": "strict"
}