2019-03-02 22:59:15 +00:00
|
|
|
{
|
|
|
|
"root": true,
|
2019-06-03 03:31:38 +00:00
|
|
|
"extends": ["airbnb-base", "plugin:vue/recommended"],
|
2019-03-02 22:59:15 +00:00
|
|
|
"parserOptions": {
|
2021-11-20 22:59:15 +00:00
|
|
|
"parser": "@babel/eslint-parser",
|
2019-11-15 00:27:58 +00:00
|
|
|
"ecmaVersion": 2019,
|
2019-06-03 03:31:38 +00:00
|
|
|
"sourceType": "module"
|
2019-03-02 22:59:15 +00:00
|
|
|
},
|
|
|
|
"rules": {
|
2020-05-14 02:26:05 +00:00
|
|
|
"indent": ["error", "tab"],
|
|
|
|
"no-tabs": "off",
|
2019-03-02 22:59:15 +00:00
|
|
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
|
|
|
"no-console": 0,
|
2023-11-30 02:12:47 +00:00
|
|
|
"default-param-last": 0,
|
2019-12-09 23:30:55 +00:00
|
|
|
"template-curly-spacing": "off",
|
2020-03-27 03:39:13 +00:00
|
|
|
"max-len": 0,
|
2020-03-26 02:32:07 +00:00
|
|
|
"vue/no-v-html": 0,
|
2020-05-14 02:26:05 +00:00
|
|
|
"vue/html-indent": ["error", "tab"],
|
2019-07-06 03:29:12 +00:00
|
|
|
"vue/multiline-html-element-content-newline": 0,
|
|
|
|
"vue/singleline-html-element-content-newline": 0,
|
2022-01-28 03:05:29 +00:00
|
|
|
"vue/multi-word-component-names": 0,
|
2023-11-30 02:12:47 +00:00
|
|
|
"vue/no-reserved-component-names": 0,
|
2019-06-03 03:31:38 +00:00
|
|
|
"no-param-reassign": ["error", {
|
|
|
|
"props": true,
|
|
|
|
"ignorePropertyModificationsFor": ["state", "acc"]
|
2022-01-28 03:05:29 +00:00
|
|
|
}]
|
2019-06-03 03:31:38 +00:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"CONFIG": true
|
2019-03-02 22:59:15 +00:00
|
|
|
}
|
|
|
|
}
|