-
Notifications
You must be signed in to change notification settings - Fork 0
/
eslint.config.js
55 lines (53 loc) · 1.57 KB
/
eslint.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
import globals from 'globals'
import pluginJs from '@eslint/js'
import tseslint from 'typescript-eslint'
import pluginReact from 'eslint-plugin-react'
/** @type {import('eslint').Linter.Config[]} */
export default [
// files
{ files: ['**/*.{js,mjs,cjs,ts,jsx,tsx}'] },
// settings
{ settings: { react: { version: '18.3' } } },
// language settings
{
languageOptions: {
globals: globals.browser,
ecmaVersion: 'latest',
parserOptions: {
project: ['./tsconfig.node.json', './tsconfig.json'],
projectService: true,
tsconfigRootDir: import.meta.dirname,
},
},
},
// plugins
{
plugins: {
react: pluginReact,
},
},
// configs
pluginJs.configs.recommended,
...tseslint.configs.recommendedTypeChecked,
pluginReact.configs.flat.recommended,
// rules
{
rules: {
...pluginReact.configs.recommended.rules,
...pluginReact.configs['jsx-runtime'].rules,
semi: 'off',
'react/react-in-jsx-scope': 'off',
'import/extensions': 'off',
'@typescript-eslint/no-unused-vars': 'off',
'@typescript-eslint/no-throw-literal': 'off',
'@typescript-eslint/no-floating-promises': 'off',
'@typescript-eslint/no-misused-promises': 'off',
'no-unused-vars': 'off',
'no-console': 'warn',
'no-return-assign': 'off',
},
},
{
ignores: ['*.js', 'jest.*'],
},
]