mirror of
https://github.com/tangledup-ai/stepfun-vector-stores-admin.git
synced 2026-01-20 19:00:59 +08:00
* refactor: convert components to named exports - Convert arrow function components to function declarations - Replace React.forwardRef with modern TypeScript patterns - Remove unnecessary displayName assignments - Ensure consistent component declaration style across codebase * refactor: convert all components to named exports for consistency - Convert default exports to named exports across features directory - Update all import statements to use named imports - Move sidebarNavItems outside Settings component for better organization - Improve component parameter formatting for readability - Ensure consistent export patterns throughout codebase * refactor: enforce and update import type for typescript types
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import globals from 'globals'
|
|
import js from '@eslint/js'
|
|
import pluginQuery from '@tanstack/eslint-plugin-query'
|
|
import reactHooks from 'eslint-plugin-react-hooks'
|
|
import reactRefresh from 'eslint-plugin-react-refresh'
|
|
import tseslint from 'typescript-eslint'
|
|
|
|
export default tseslint.config(
|
|
{ ignores: ['dist', 'src/components/ui'] },
|
|
{
|
|
extends: [
|
|
js.configs.recommended,
|
|
...tseslint.configs.recommended,
|
|
...pluginQuery.configs['flat/recommended'],
|
|
],
|
|
files: ['**/*.{ts,tsx}'],
|
|
languageOptions: {
|
|
ecmaVersion: 2020,
|
|
globals: globals.browser,
|
|
},
|
|
plugins: {
|
|
'react-hooks': reactHooks,
|
|
'react-refresh': reactRefresh,
|
|
},
|
|
rules: {
|
|
...reactHooks.configs.recommended.rules,
|
|
'react-refresh/only-export-components': [
|
|
'warn',
|
|
{ allowConstantExport: true },
|
|
],
|
|
'no-console': 'error',
|
|
'no-unused-vars': 'off',
|
|
'@typescript-eslint/no-unused-vars': [
|
|
'error',
|
|
{
|
|
args: 'all',
|
|
argsIgnorePattern: '^_',
|
|
caughtErrors: 'all',
|
|
caughtErrorsIgnorePattern: '^_',
|
|
destructuredArrayIgnorePattern: '^_',
|
|
varsIgnorePattern: '^_',
|
|
ignoreRestSiblings: true,
|
|
},
|
|
],
|
|
// Enforce type-only imports for TypeScript types
|
|
'@typescript-eslint/consistent-type-imports': [
|
|
'error',
|
|
{
|
|
prefer: 'type-imports',
|
|
fixStyle: 'inline-type-imports',
|
|
disallowTypeAnnotations: false,
|
|
},
|
|
],
|
|
},
|
|
}
|
|
)
|