-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.eslintrc.cjs
36 lines (36 loc) · 1.14 KB
/
.eslintrc.cjs
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
module.exports = {
root: true,
env: { browser: true, es2020: true },
parser: '@typescript-eslint/parser',
parserOptions: {
project: ['./tsconfig.app.json'],
ecmaFeatures: {
jsx: true,
},
},
plugins: ['prettier', '@typescript-eslint', 'react', 'react-hooks', 'react-refresh'],
ignorePatterns: ['dist', '.eslintrc.cjs'],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended-requiring-type-checking',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:react/jsx-runtime',
'plugin:prettier/recommended',
],
rules: {
'object-shorthand': 'warn',
'no-console': 'warn',
'prettier/prettier': 'error',
'@typescript-eslint/no-unused-vars': [
'warn',
{
argsIgnorePattern: '^_',
varsIgnorePattern: '^_ignored',
},
],
'react-hooks/rules-of-hooks': 'warn',
'react-hooks/exhaustive-deps': 'warn',
'react-refresh/only-export-components': ['warn', { allowConstantExport: false }],
},
};