Transitioning to Vue. Installed environment and restored homepage scene overview.

This commit is contained in:
2019-06-03 05:31:38 +02:00
parent b8c2878fc3
commit b8aa81b3f1
37 changed files with 5261 additions and 413 deletions

View File

@@ -1,23 +1,26 @@
{
"root": true,
"parser": "babel-eslint",
"extends": ["airbnb", "plugin:react/recommended"],
"plugins": ["react"],
"extends": ["airbnb-base", "plugin:vue/recommended"],
"parserOptions": {
"sourceType": "script",
"ecmaFeatures": {
"jsx": true
}
"ecmaVersion": 2017,
"sourceType": "module"
},
"rules": {
"strict": 0,
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
"no-console": 0,
"indent": ["error", 4],
"max-len": [2, {"code": 200, "tabWidth": 4, "ignoreUrls": true}],
"react/jsx-uses-vars": 2,
"react/jsx-indent": ["error", 4],
"react/jsx-indent-props": ["error", 4],
"react/jsx-one-expression-per-line": "off",
"max-len": [2, {
"code": 200,
"tabWidth": 4,
"ignoreUrls": true
}],
"vue/html-indent": ["error", 4],
"no-param-reassign": ["error", {
"props": true,
"ignorePropertyModificationsFor": ["state", "acc"]
}]
},
"globals": {
"CONFIG": true
}
}