-
Notifications
You must be signed in to change notification settings - Fork 0
/
.eslintrc.json
78 lines (76 loc) · 2.53 KB
/
.eslintrc.json
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
70
71
72
73
74
75
76
77
78
{
"extends": [
"next/core-web-vitals",
"airbnb",
"airbnb/hooks",
"airbnb-typescript",
"eslint-config-prettier"
],
"rules": {
"import/prefer-default-export": "off",
"prefer-arrow-callback": 2,
"react/react-in-jsx-scope": "off",
"import/no-named-default": "off",
"import/extensions": [2, { "*": "never" }],
"react/jsx-props-no-spreading": "off",
"react/jsx-filename-extension": [1, { "extensions": [".tsx"] }],
"react/function-component-definition": [
2,
{
"namedComponents": "arrow-function",
"unnamedComponents": "arrow-function"
}
],
"react/require-default-props": "off",
"react/prop-types": "off",
"react/no-array-index-key": "off",
"@typescript-eslint/naming-convention": [
"warn",
{
"format": ["camelCase"],
"leadingUnderscore": "allow",
"selector": "default"
},
{
"format": ["camelCase", "UPPER_CASE", "PascalCase"],
"leadingUnderscore": "allow",
"selector": "variable"
},
{ "format": ["PascalCase"], "selector": "typeLike" },
{ "format": ["camelCase", "PascalCase"], "selector": "import" }
],
"no-console": [
"error",
{ "allow": ["debug", "warn", "error", "info"] }
],
"import/order": [
"error",
{
"newlines-between": "always",
"groups": [
"builtin",
"external",
"internal",
"sibling",
"parent"
]
}
]
},
"overrides": [
{
"files": ["*.ts", "*.tsx"], // Your TypeScript files extension
// As mentioned in the comments, you should extend TypeScript plugins here,
// instead of extending them outside the `overrides`.
// If you don't want to extend any rules, you don't need an `extends` attribute.
"extends": [
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking"
],
"parserOptions": {
"project": ["./tsconfig.json"] // Specify it only for TypeScript files
}
}
],
"ignorePatterns": ["next.config.js"]
}