Initiali commit.

This commit is contained in:
2019-03-02 23:59:15 +01:00
commit cf8f299061
6 changed files with 3244 additions and 0 deletions

15
.eslintrc Normal file
View File

@@ -0,0 +1,15 @@
{
"root": true,
"parser": "babel-eslint",
"extends": "airbnb-base",
"parserOptions": {
"sourceType": "script"
},
"rules": {
"strict": 0,
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
"indent": ["error", 4],
"max-len": [2, {"code": 200, "tabWidth": 4, "ignoreUrls": true}]
}
}