30 lines
799 B
JavaScript
30 lines
799 B
JavaScript
|
|
import js from '@eslint/js'
|
||
|
|
import globals from 'globals'
|
||
|
|
import reactHooks from 'eslint-plugin-react-hooks'
|
||
|
|
import reactPlugin from 'eslint-plugin-react'
|
||
|
|
import tseslint from 'typescript-eslint'
|
||
|
|
|
||
|
|
export default tseslint.config(
|
||
|
|
{ ignores: ['dist', 'src/api/schema.d.ts'] },
|
||
|
|
{
|
||
|
|
extends: [js.configs.recommended, ...tseslint.configs.recommended],
|
||
|
|
files: ['**/*.{ts,tsx}'],
|
||
|
|
languageOptions: {
|
||
|
|
ecmaVersion: 2020,
|
||
|
|
globals: globals.browser,
|
||
|
|
},
|
||
|
|
plugins: {
|
||
|
|
'react-hooks': reactHooks,
|
||
|
|
react: reactPlugin,
|
||
|
|
},
|
||
|
|
rules: {
|
||
|
|
...reactHooks.configs.recommended.rules,
|
||
|
|
'react/react-in-jsx-scope': 'off',
|
||
|
|
'@typescript-eslint/no-unused-vars': [
|
||
|
|
'error',
|
||
|
|
{ argsIgnorePattern: '^_', varsIgnorePattern: '^_' },
|
||
|
|
],
|
||
|
|
},
|
||
|
|
},
|
||
|
|
)
|