yumechi-no-kuni/.eslintrc

32 lines
648 B
Text
Raw Normal View History

2018-02-19 03:26:20 -06:00
{
"parserOptions": {
2019-07-03 06:20:02 -05:00
"parser": "@typescript-eslint/parser"
2018-02-19 03:26:20 -06:00
},
"extends": [
"eslint:recommended",
"plugin:vue/recommended"
],
"rules": {
2019-07-03 06:20:02 -05:00
"vue/require-v-for-key": 0,
"vue/max-attributes-per-line": 0,
"vue/html-indent": 0,
"vue/html-self-closing": 0,
"vue/no-unused-vars": 0,
"vue/attributes-order": 0,
"vue/require-prop-types": 0,
"vue/require-default-prop": 0,
"vue/html-closing-bracket-spacing": 0,
"vue/singleline-html-element-content-newline": 0,
"vue/no-v-html": 0,
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
}
}