Add eslint

This commit is contained in:
2020-10-06 19:53:07 +02:00
parent d9cce44a0b
commit 83907a87a6
4 changed files with 2236 additions and 157 deletions

9
.eslintrc.json Normal file
View File

@@ -0,0 +1,9 @@
{
"extends": ["airbnb-base"],
"rules": {
"no-console": "off",
"no-use-before-define": "off",
"indent": ["error", "tab"],
"no-tabs": "off"
}
}