-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.js
69 lines (69 loc) · 1.49 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
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* @type {import("eslint").Linter.Config}
*/
module.exports = {
extends: ['plugin:react/recommended', 'next/core-web-vitals'],
env: { es6: true },
rules: {
'@next/next/no-img-element': 'off',
'react/jsx-sort-props': [
2,
{
callbacksLast: true,
shorthandFirst: true,
ignoreCase: true,
reservedFirst: true,
},
],
'import/order': [
'warn',
{
alphabetize: { order: 'asc', caseInsensitive: true },
pathGroups: [
{
pattern: '@/common/**',
group: 'external',
position: 'after',
},
{
pattern: '@/modules/**',
group: 'external',
position: 'after',
},
],
'newlines-between': 'always',
},
],
'array-callback-return': [
'error',
{
checkForEach: true,
},
],
'simple-import-sort/exports': 'error',
'import/first': 'error',
'import/newline-after-import': 'error',
'import/no-duplicates': 'error',
'import/no-anonymous-default-export': 'warn',
'react/no-unknown-property': [
'error',
{ ignore: ['css', 'global', 'jsx'] },
],
},
root: true,
parser: '@typescript-eslint/parser',
plugins: [
'@next/next',
'@typescript-eslint',
'react',
'simple-import-sort',
'import',
],
parserOptions: {
project: './tsconfig.json',
sourceType: 'module',
ecmaFeatures: {
jsx: true,
},
},
};