fix: prettier to warning and trailingComma #10

Merged
EndMove merged 3 commits from fix/better-vars into master 2023-09-03 17:17:31 +02:00
Showing only changes of commit 8acfa93fce - Show all commits

View File

@ -110,7 +110,7 @@
"dot-notation": "warn", "dot-notation": "warn",
"quotes": ["error", "single"], "quotes": ["error", "single"],
"prettier/prettier": [ "prettier/prettier": [
"error", "warn",
{ {
"printWidth": 120, "printWidth": 120,
"tabWidth": 2, "tabWidth": 2,
@ -121,7 +121,8 @@
"jsxSingleQuote": false, "jsxSingleQuote": false,
"bracketSpacing": true, "bracketSpacing": true,
"bracketSameLine": false, "bracketSameLine": false,
"arrowParens": "always" "arrowParens": "always",
"trailingComma": "es5"
} }
] ]
}, },