File tree 3 files changed +11
-9
lines changed
3 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 69
69
"autoprefixer" : " ^9.1.5" ,
70
70
"chai" : " ^3.5.0" ,
71
71
"cross-env" : " ^7.0.3" ,
72
- "eslint" : " ^4.19.1" ,
73
- "eslint-config-airbnb-base" : " ^13.1.0" ,
74
- "eslint-formatter-friendly" : " ^6.0.0" ,
75
- "eslint-loader" : " ^2.1.0" ,
76
- "eslint-plugin-import" : " ^2.14.0" ,
77
- "eslint-plugin-vue" : " ^4.7.1" ,
72
+ "eslint" : " ^7.32.0" ,
73
+ "eslint-config-airbnb-base" : " ^14.2.1" ,
74
+ "eslint-formatter-friendly" : " ^7.0.0" ,
75
+ "eslint-plugin-import" : " ^2.24.2" ,
76
+ "eslint-plugin-vue" : " ^7.18.0" ,
78
77
"focus-visible" : " ^4.1.5" ,
79
78
"husky" : " ^0.14.3" ,
80
79
"karma" : " ^3.0.0" ,
128
127
"extends" : [
129
128
" airbnb-base" ,
130
129
" plugin:vue/essential"
131
- ]
130
+ ],
131
+ "parserOptions" : {
132
+ "ecmaVersion" : 2020
133
+ }
132
134
},
133
135
"eslintIgnore" : [
134
136
" build" ,
135
137
" dev" ,
136
138
" dist" ,
137
139
" test/unit/coverage" ,
140
+ " test/unit" ,
138
141
" scripts"
139
142
]
140
143
}
Original file line number Diff line number Diff line change 1
-
2
1
// Import vue component
3
2
import component from './components/InfiniteLoading.vue' ;
4
3
Original file line number Diff line number Diff line change @@ -108,7 +108,7 @@ export const scrollBarStorage = {
108
108
* @return {String }
109
109
*/
110
110
export function kebabCase ( str ) {
111
- return str . replace ( / [ A - Z ] / g, s => `-${ s . toLowerCase ( ) } ` ) ;
111
+ return str . replace ( / [ A - Z ] / g, ( s ) => `-${ s . toLowerCase ( ) } ` ) ;
112
112
}
113
113
114
114
/**
You can’t perform that action at this time.
0 commit comments