File tree 2 files changed +6
-5
lines changed
2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -120,9 +120,9 @@ This rule aims to enforce a consistent style in `v-on` event handlers:
120
120
121
121
</eslint-code-block >
122
122
123
- ### ` [ "inline-function"] `
123
+ ### ` "inline-function" `
124
124
125
- <eslint-code-block fix :rules =" {'vue/v-on-handler-style': ['error', [ 'inline-function'] ]} " >
125
+ <eslint-code-block fix :rules =" {'vue/v-on-handler-style': ['error', 'inline-function']} " >
126
126
127
127
``` vue
128
128
<template>
@@ -140,9 +140,9 @@ This rule aims to enforce a consistent style in `v-on` event handlers:
140
140
141
141
</eslint-code-block >
142
142
143
- ### ` [ "inline"] `
143
+ ### ` "inline" `
144
144
145
- <eslint-code-block fix :rules =" {'vue/v-on-handler-style': ['error', [ 'inline'] ]} " >
145
+ <eslint-code-block fix :rules =" {'vue/v-on-handler-style': ['error', 'inline']} " >
146
146
147
147
``` vue
148
148
<template>
Original file line number Diff line number Diff line change 19
19
"baseUrl" : " ." ,
20
20
"paths" : {
21
21
"*" : [" typings/*" ]
22
- }
22
+ },
23
+ "skipLibCheck" : true
23
24
},
24
25
"include" : [" lib/**/*" , " typings/eslint-plugin-vue/global.d.ts" ]
25
26
}
You can’t perform that action at this time.
0 commit comments