Version 1.4.0

This commit is contained in:
Killian
2020-10-20 19:42:51 +02:00
parent afa32e0211
commit 10fcffd6b6
43 changed files with 238 additions and 203 deletions

22
.eslintrc.js Normal file
View File

@@ -0,0 +1,22 @@
module.exports = {
"rules": {
"no-console": `off`,
"indent": [`error`, 4],
"semi": [`error`, `always`],
"quotes": [`error`, `backtick`],
"keyword-spacing": [
`error`,
{
"before": true, "after": true
}
],
},
"extends": `eslint:recommended`,
"env": {
"es6": true,
"node": true,
},
"parserOptions": {
"ecmaVersion": 2020
},
};