File tree Expand file tree Collapse file tree 2 files changed +902
-836
lines changed
Expand file tree Collapse file tree 2 files changed +902
-836
lines changed Original file line number Diff line number Diff line change 11import eslint from '@eslint/js'
2+ import { defineConfig } from 'eslint/config'
23import importPlugin from 'eslint-plugin-import'
34import eslintPluginReact from 'eslint-plugin-react'
45import reactCompiler from 'eslint-plugin-react-compiler'
@@ -8,7 +9,7 @@ import eslintPluginUnicorn from 'eslint-plugin-unicorn'
89import globals from 'globals'
910import tseslint from 'typescript-eslint'
1011
11- export default tseslint . config (
12+ export default defineConfig (
1213 {
1314 ignores : [
1415 'packages/__mocks__/@testing-library/react.tsx' ,
@@ -186,6 +187,7 @@ export default tseslint.config(
186187 '@typescript-eslint/no-explicit-any' : 'off' ,
187188 '@typescript-eslint/explicit-module-boundary-types' : 'off' ,
188189 '@typescript-eslint/ban-ts-comment' : 'off' ,
190+ '@typescript-eslint/no-unnecessary-type-conversion' : 'off' ,
189191 '@typescript-eslint/no-unnecessary-type-parameters' : 'off' ,
190192 '@typescript-eslint/no-misused-promises' : 'off' ,
191193 '@typescript-eslint/no-base-to-string' : 'off' ,
You can’t perform that action at this time.
0 commit comments