Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import type { Linter } from '@typescript-eslint/utils/ts-eslint'
import type { Linter } from 'eslint'
import { version } from '../package.json'
import lowerCaseTitle, { RULE_NAME as lowerCaseTitleName } from './rules/prefer-lowercase-title'
import maxNestedDescribe, { RULE_NAME as maxNestedDescribeName } from './rules/max-nested-describe'
Expand Down Expand Up @@ -255,7 +255,7 @@ const rules = {
[preferCalledTimesName]: preferCalledTimes,
[preferExpectTypeOfName]: preferExpectTypeOf,
[warnTodoName]: warnTodo
}
} as const

const plugin = {
meta: {
Expand Down Expand Up @@ -330,8 +330,8 @@ const plugin = {
onTestFinished: 'writable',
},
},
},
},
}
} as const satisfies Linter.Config,
} as const,
} as const

export default plugin