diff --git a/.prettierrc b/.prettierrc index 17c54ee..bf662de 100644 --- a/.prettierrc +++ b/.prettierrc @@ -1,24 +1,24 @@ { "arrowParens": "always", + "bracketSameLine": false, "bracketSpacing": true, + "embeddedLanguageFormatting": "auto", "endOfLine": "lf", + "experimentalTernaries": false, "htmlWhitespaceSensitivity": "css", "insertPragma": false, - "singleAttributePerLine": false, - "bracketSameLine": false, "jsxBracketSameLine": false, "jsxSingleQuote": false, + "parser": "typescript", "printWidth": 80, "proseWrap": "preserve", "quoteProps": "as-needed", "requirePragma": false, "semi": true, + "singleAttributePerLine": false, "singleQuote": true, "tabWidth": 2, "trailingComma": "es5", "useTabs": false, - "embeddedLanguageFormatting": "auto", - "vueIndentScriptAndStyle": false, - "experimentalTernaries": false, - "parser": "typescript" + "vueIndentScriptAndStyle": false }