2018-02-19 03:26:20 -06:00
|
|
|
{
|
|
|
|
"parserOptions": {
|
|
|
|
"parser": "typescript-eslint-parser"
|
|
|
|
},
|
|
|
|
"extends": [
|
|
|
|
"eslint:recommended",
|
|
|
|
"plugin:vue/recommended"
|
|
|
|
],
|
|
|
|
"rules": {
|
|
|
|
"vue/require-v-for-key": false,
|
|
|
|
"vue/max-attributes-per-line": false,
|
|
|
|
"vue/html-indent": false,
|
|
|
|
"vue/html-self-closing": false,
|
|
|
|
"vue/no-unused-vars": false,
|
2018-03-15 01:02:15 -05:00
|
|
|
"vue/attributes-order": false,
|
|
|
|
"vue/require-prop-types": false,
|
2018-04-24 22:36:54 -05:00
|
|
|
"vue/require-default-prop": false,
|
2019-01-18 17:47:06 -06:00
|
|
|
"vue/html-closing-bracket-spacing": false,
|
2019-01-18 17:49:57 -06:00
|
|
|
"vue/singleline-html-element-content-newline": false,
|
2019-01-19 04:16:57 -06:00
|
|
|
"vue/no-v-html": false,
|
2018-02-19 21:38:45 -06:00
|
|
|
"no-console": 0,
|
2018-02-20 11:53:34 -06:00
|
|
|
"no-unused-vars": 0,
|
|
|
|
"no-empty": 0
|
2018-03-15 15:45:28 -05:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"ENV": true,
|
|
|
|
"VERSION": true,
|
2018-05-20 20:35:42 -05:00
|
|
|
"API": true,
|
|
|
|
"LANGS": true
|
2018-02-19 03:26:20 -06:00
|
|
|
}
|
|
|
|
}
|