File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 11import devupUiEslintPlugin from '@devup-ui/eslint-plugin'
22import js from '@eslint/js'
33import pluginQuery from '@tanstack/eslint-plugin-query'
4+ import type { Linter } from 'eslint'
45import * as mdx from 'eslint-plugin-mdx'
56import eslintPluginPrettierRecommended from 'eslint-plugin-prettier/recommended'
67// @ts -ignore
@@ -170,4 +171,4 @@ export default [
170171 '@typescript-eslint/no-empty-object-type' : 'off' ,
171172 } ,
172173 } ,
173- ]
174+ ] as Linter . Config [ ]
Original file line number Diff line number Diff line change 1+ import type { Linter } from 'eslint'
2+
13import recommended from './configs/recommended'
24export * as rules from './rules'
35
4- export const configs = {
6+ export const configs : { recommended : Linter . Config [ ] } = {
57 recommended,
6- }
8+ } as const
79
810export default {
911 configs,
You can’t perform that action at this time.
0 commit comments