File tree 3 files changed +7
-4
lines changed
3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change
1
+ /coverage
1
2
/dist
Original file line number Diff line number Diff line change @@ -3,13 +3,13 @@ require('@rushstack/eslint-patch/modern-module-resolution')
3
3
4
4
module . exports = {
5
5
root : true ,
6
- ' extends' : [
6
+ extends : [
7
7
'plugin:vue/vue3-essential' ,
8
8
'eslint:recommended' ,
9
9
'@vue/eslint-config-typescript' ,
10
- '@vue/eslint-config-prettier'
10
+ '@vue/eslint-config-prettier' ,
11
11
] ,
12
12
parserOptions : {
13
- ecmaVersion : 'latest'
14
- }
13
+ ecmaVersion : 'latest' ,
14
+ } ,
15
15
}
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const mixin = defineMixin({
18
18
msg : { type : String , required : true } ,
19
19
} ,
20
20
emits : {
21
+ // eslint-disable-next-line @typescript-eslint/no-unused-vars
21
22
'update:show' : ( value ?: any ) => true ,
22
23
} ,
23
24
data : ( ) => ( {
@@ -39,6 +40,7 @@ const mixin = defineMixin({
39
40
40
41
const testComposable = createComposableFromMixin ( mixin )
41
42
43
+ /* eslint-disable @typescript-eslint/no-unused-vars */
42
44
const Comp = defineComponent ( {
43
45
setup ( ) {
44
46
const state = testComposable ( )
You can’t perform that action at this time.
0 commit comments