Removed some obsolete client components. Added ASG Max with affiliates.
This commit is contained in:
24
.eslintrc
24
.eslintrc
@@ -1,15 +1,18 @@
|
||||
{
|
||||
"root": true,
|
||||
"extends": ["airbnb-base", "plugin:vue/recommended"],
|
||||
"extends": ["airbnb-base"],
|
||||
"env": {
|
||||
"node": true
|
||||
},
|
||||
"parserOptions": {
|
||||
"parser": "@babel/eslint-parser",
|
||||
"ecmaVersion": 2019,
|
||||
"sourceType": "module"
|
||||
"ecmaVersion": "latest",
|
||||
"sourceType": "script"
|
||||
},
|
||||
"rules": {
|
||||
"indent": ["error", "tab"],
|
||||
"no-tabs": "off",
|
||||
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
||||
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
||||
"no-console": 0,
|
||||
"arrow-body-style": 0,
|
||||
"default-param-last": 0,
|
||||
@@ -17,15 +20,14 @@
|
||||
"max-len": 0,
|
||||
"func-names": 0,
|
||||
"space-before-function-paren": 0,
|
||||
"vue/no-v-html": 0,
|
||||
"vue/html-indent": ["error", "tab"],
|
||||
"vue/multiline-html-element-content-newline": 0,
|
||||
"vue/singleline-html-element-content-newline": 0,
|
||||
"vue/multi-word-component-names": 0,
|
||||
"vue/no-reserved-component-names": 0,
|
||||
"strict": 0,
|
||||
"no-underscore-dangle": 0,
|
||||
"prefer-destructuring": "off",
|
||||
"object-curly-newline": "off",
|
||||
"require-await": "off",
|
||||
"no-param-reassign": ["error", {
|
||||
"props": true,
|
||||
"ignorePropertyModificationsFor": ["state", "acc"]
|
||||
"ignorePropertyModificationsFor": ["state", "acc", "req"]
|
||||
}]
|
||||
},
|
||||
"globals": {
|
||||
|
||||
Reference in New Issue
Block a user