fix: prettier to warning and trailingComma
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Jérémi N ‘EndMove’ 2023-09-03 10:51:37 +02:00
parent 714414a801
commit 8acfa93fce
Signed by: EndMove
GPG Key ID: 65C4A02E1F5371A4

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"
} }
] ]
}, },