File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -159,22 +159,23 @@ const recommended = {
159159 [ noImportNodeTestName ] : 'error'
160160} as const
161161
162- interface VitestPLugin extends Linter . Plugin {
162+ interface VitestPlugin extends Linter . Plugin {
163163 meta : {
164164 name : string
165165 version : string
166166 }
167167 rules : Record < string , RuleModule < any , any > >
168168 // TODO: use classic type for config
169- configs ? : Record < string , any >
169+ configs : Record < string , any >
170170 environments ?: Record < string , any >
171171}
172172
173- const plugin : VitestPLugin = {
173+ const plugin : VitestPlugin = {
174174 meta : {
175175 name : 'vitest' ,
176176 version
177177 } ,
178+ configs : { } ,
178179 rules : {
179180 [ lowerCaseTitleName ] : lowerCaseTitle ,
180181 [ maxNestedDescribeName ] : maxNestedDescribe ,
You can’t perform that action at this time.
0 commit comments