-
Notifications
You must be signed in to change notification settings - Fork 88
/
.eslintrc.js
56 lines (56 loc) · 1.37 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
49
50
51
52
53
54
55
56
module.exports = {
root: true,
parser: '@typescript-eslint/parser',
parserOptions: {
project: 'tsconfig.json',
sourceType: 'module',
tsconfigRootDir: __dirname,
},
plugins: ['@typescript-eslint'],
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:@typescript-eslint/recommended',
'prettier',
'plugin:prettier/recommended',
'plugin:@next/next/recommended',
],
settings: { react: { version: 'detect' } },
env: {
node: true,
jest: true,
},
ignorePatterns: [
'.eslintrc.js',
'jest.config.js',
'next.config.js',
'next-i18next.config.js',
'sentry.client.config.js',
'sentry.server.config.js',
'next-sitemap.config.js',
'e2e/*',
],
rules: {
'react/display-name': 'off',
'@typescript-eslint/interface-name-prefix': 'off',
'@typescript-eslint/explicit-function-return-type': 'off',
'@typescript-eslint/explicit-module-boundary-types': 'off',
'@typescript-eslint/no-explicit-any': 2,
'react/react-in-jsx-scope': 'off',
'react/prop-types': 'off',
'react/self-closing-comp': ['error', { component: true, html: true }],
'prettier/prettier': [
'error',
{
endOfLine: 'auto',
},
],
'no-restricted-imports': [
'error',
{
name: 'react-i18next',
message: 'Please use next-i18next',
},
],
},
}