Add prettier with basic config

This commit is contained in:
Alexandre Mouton-Brady
2021-12-24 22:41:47 +01:00
parent 2ce8ef4dd5
commit d8d2c5b2af
5 changed files with 522 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
{
"arrowParens": "always",
"bracketSpacing": true,
"bracketSameLine": false,
"endOfLine": "lf",
"htmlWhitespaceSensitivity": "ignore",
"jsxSingleQuote": false,
"printWidth": 80,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false
}