2018-02-19 10:26:20 +01: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 07:02:15 +01:00
|
|
|
"vue/attributes-order": false,
|
|
|
|
"vue/require-prop-types": false,
|
2018-04-25 05:36:54 +02:00
|
|
|
"vue/require-default-prop": false,
|
2019-01-19 00:47:06 +01:00
|
|
|
"vue/html-closing-bracket-spacing": false,
|
2019-01-19 00:49:57 +01:00
|
|
|
"vue/singleline-html-element-content-newline": false,
|
2019-01-19 11:16:57 +01:00
|
|
|
"vue/no-v-html": false,
|
2018-02-20 04:38:45 +01:00
|
|
|
"no-console": 0,
|
2018-02-20 18:53:34 +01:00
|
|
|
"no-unused-vars": 0,
|
|
|
|
"no-empty": 0
|
2018-03-15 21:45:28 +01:00
|
|
|
},
|
|
|
|
"globals": {
|
|
|
|
"ENV": true,
|
|
|
|
"VERSION": true,
|
2018-05-21 03:35:42 +02:00
|
|
|
"API": true,
|
|
|
|
"LANGS": true
|
2018-02-19 10:26:20 +01:00
|
|
|
}
|
|
|
|
}
|