Initialize eslint, prettier, format on save

This commit is contained in:
Sam Schloegel
2022-01-02 22:41:15 -05:00
parent 9a6d8875e8
commit f9cf6ecc52
6 changed files with 1033 additions and 10 deletions
+14
View File
@@ -0,0 +1,14 @@
module.exports = {
"env": {
"browser": true,
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 13
},
"rules": {
}
};