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": {
|
2019-12-09 04:00:49 +00:00
|
|
|
"parser": "babel-eslint",
|
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": {
|
|
|
|
"no-unused-vars": ["error", {"argsIgnorePattern": "^_"}],
|
|
|
|
"no-console": 0,
|
2019-12-09 23:30:55 +00:00
|
|
|
"indent": "off",
|
|
|
|
"template-curly-spacing": "off",
|
2019-06-03 03:31:38 +00:00
|
|
|
"max-len": [2, {
|
2019-11-11 02:20:00 +00:00
|
|
|
"code": 300,
|
2019-06-03 03:31:38 +00:00
|
|
|
"tabWidth": 4,
|
|
|
|
"ignoreUrls": true
|
|
|
|
}],
|
|
|
|
"vue/html-indent": ["error", 4],
|
2019-07-06 03:29:12 +00:00
|
|
|
"vue/multiline-html-element-content-newline": 0,
|
|
|
|
"vue/singleline-html-element-content-newline": 0,
|
2019-06-03 03:31:38 +00:00
|
|
|
"no-param-reassign": ["error", {
|
|
|
|
"props": true,
|
|
|
|
"ignorePropertyModificationsFor": ["state", "acc"]
|
2019-12-09 23:30:55 +00:00
|
|
|
}],
|
2019-06-03 03:31:38 +00:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"CONFIG": true
|
2019-03-02 22:59:15 +00:00
|
|
|
}
|
|
|
|
}
|