-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy path.eslintrc.cjs
More file actions
38 lines (38 loc) · 1012 Bytes
/
.eslintrc.cjs
File metadata and controls
38 lines (38 loc) · 1012 Bytes
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
/** @type {import('eslint').Linter.Config} */
module.exports = {
root: true,
env: { browser: true, es2022: true },
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 2022,
sourceType: 'module',
ecmaFeatures: { jsx: true },
},
plugins: ['@typescript-eslint', 'react', 'react-hooks'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:react/jsx-runtime',
],
settings: {
react: { version: 'detect' },
},
ignorePatterns: [
'node_modules/',
'dist/',
'**/*.d.ts',
'*.config.js',
'*.config.cjs',
'*.config.mjs',
'*.config.ts',
],
rules: {
'@typescript-eslint/no-unused-vars': ['warn', { argsIgnorePattern: '^_' }],
'@typescript-eslint/no-explicit-any': 'off',
'react/prop-types': 'off',
'react/no-unescaped-entities': ['error', { forbid: ['>', '}'] }],
'react-hooks/exhaustive-deps': 'warn',
},
}