forked from vuejs/eslint-plugin-vue
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecommended-rules.js
43 lines (43 loc) · 1.43 KB
/
recommended-rules.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
* IMPORTANT!
* This file has been automatically generated,
* in order to update it's content execute "npm run update"
*/
module.exports = {
"vue/html-end-tags": "off",
"vue/html-no-self-closing": "off",
"vue/html-quotes": "off",
"vue/jsx-uses-vars": "error",
"vue/name-property-casing": "off",
"vue/no-async-in-computed-properties": "off",
"vue/no-confusing-v-for-v-if": "error",
"vue/no-dupe-keys": "off",
"vue/no-duplicate-attributes": "off",
"vue/no-invalid-template-root": "error",
"vue/no-invalid-v-bind": "error",
"vue/no-invalid-v-cloak": "error",
"vue/no-invalid-v-else-if": "error",
"vue/no-invalid-v-else": "error",
"vue/no-invalid-v-for": "error",
"vue/no-invalid-v-html": "error",
"vue/no-invalid-v-if": "error",
"vue/no-invalid-v-model": "error",
"vue/no-invalid-v-on": "error",
"vue/no-invalid-v-once": "error",
"vue/no-invalid-v-pre": "error",
"vue/no-invalid-v-show": "error",
"vue/no-invalid-v-text": "error",
"vue/no-parsing-error": "error",
"vue/no-reservered-keys": "off",
"vue/no-shared-component-data": "off",
"vue/no-side-effects-in-computed-properties": "off",
"vue/no-template-key": "off",
"vue/no-textarea-mustache": "error",
"vue/order-in-components": "off",
"vue/require-component-is": "error",
"vue/require-prop-types": "off",
"vue/require-v-for-key": "error",
"vue/return-in-computed-property": "off",
"vue/v-bind-style": "off",
"vue/v-on-style": "off"
}