generated from hungdoansy/nextjs-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.eslintrc.js
76 lines (76 loc) · 2.79 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
70
71
72
73
74
75
76
module.exports = {
root: true, // Make sure eslint picks up the config at the root of the directory
parser: "@typescript-eslint/parser",
parserOptions: {
ecmaVersion: 2020, // Use the latest ecmascript standard
sourceType: "module", // Allows using import/export statements
ecmaFeatures: {
jsx: true, // Enable JSX since we're using React
},
},
settings: {
react: {
version: "detect", // Automatically detect the react version
},
},
env: {
browser: true, // Enables browser globals like window and document
amd: true, // Enables require() and define() as global variables as per the amd spec.
node: true, // Enables Node.js global variables and Node.js scoping.
},
extends: [
"eslint:recommended",
"plugin:@typescript-eslint/eslint-recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
// "plugin:jsx-a11y/recommended",
"prettier",
"plugin:prettier/recommended", // Make this the last element so prettier config overrides other formatting rules
],
plugins: ["react-hooks"],
rules: {
"prettier/prettier": ["error", {}, { usePrettierrc: true }],
"react/react-in-jsx-scope": "off",
"react/prop-types": "off",
"@typescript-eslint/explicit-function-return-type": "off",
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive-deps": "warn",
"jsx-a11y/no-static-element-interactions": "off",
"jsx-a11y/click-events-have-key-events": "off",
"react/self-closing-comp": [
"error",
{
component: true,
html: true,
},
],
"sort-imports": [
"error",
{
ignoreCase: true,
ignoreDeclarationSort: true,
ignoreMemberSort: true,
memberSyntaxSortOrder: ["none", "all", "multiple", "single"],
allowSeparatedGroups: true,
},
],
"react/display-name": "off",
"@typescript-eslint/ban-ts-comment": "off",
"@typescript-eslint/ban-ts-ignore": "off",
"@typescript-eslint/ban-types": "off",
"@typescript-eslint/triple-slash-reference": "off",
"prefer-const": [
"warn",
{
destructuring: "all",
ignoreReadBeforeAssign: false,
},
],
"object-shorthand": "warn",
"no-debugger": "warn",
"array-callback-return": ["warn", { allowImplicit: true, checkForEach: true }],
"@typescript-eslint/no-empty-function": "off",
"react/jsx-boolean-value": ["warn", "never"],
"react/jsx-curly-brace-presence": "warn",
},
}