-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
48 lines (48 loc) · 1.27 KB
/
.eslintrc.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
module.exports = {
env: {
browser: true,
es2021: true,
node: true,
jest: true,
},
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
'google',
'prettier',
'next',
'plugin:@tanstack/eslint-plugin-query/recommended',
],
overrides: [],
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module',
},
plugins: ['@typescript-eslint', 'unused-imports', '@tanstack/query'],
rules: {
'react-hooks/exhaustive-deps': 'off',
'react/react-in-jsx-scope': 'off',
'no-unused-vars': 'off',
'unused-imports/no-unused-imports': 'error',
'unused-imports/no-unused-vars': [
'warn',
{
vars: 'all',
varsIgnorePattern: '^_',
args: 'after-used',
argsIgnorePattern: '^_',
},
],
'@typescript-eslint/no-unused-vars': ['error'],
'@typescript-eslint/no-explicit-any': 'off',
'require-jsdoc': 'off',
'spaced-comment': 'off',
'valid-jsdoc': 'off',
'prefer-promise-reject-errors': 'off',
'new-cap': 'off',
'@tanstack/query/exhaustive-deps': 'error',
'@tanstack/query/prefer-query-object-syntax': 'off',
'@tanstack/query/stable-query-client': 'error',
},
ignorePatterns: ['app/components/ui/*.ts', 'app/components/ui/*.tsx'],
};