ESLint + Prettier update

This commit is contained in:
Bryan Ashby
2022-06-05 16:41:16 -06:00
parent 4881c2123a
commit 5a6827f46b
3 changed files with 8 additions and 2 deletions

View File

@@ -3,7 +3,7 @@
"es6": true,
"node": true
},
"extends": ["eslint:recommended"],
"extends": ["eslint:recommended", "prettier"],
"rules": {
"indent": [
"error",
@@ -16,7 +16,7 @@
"quotes": ["error", "single"],
"semi": ["error", "always"],
"comma-dangle": 0,
"no-trailing-spaces": "warn"
"no-trailing-spaces": "error"
},
"parserOptions": {
"ecmaVersion": 2020