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