-
Notifications
You must be signed in to change notification settings - Fork 3
/
.eslintrc.js
100 lines (98 loc) · 2.96 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
module.exports = {
root: true,
env: {
node: true,
es6: true,
},
parserOptions: { ecmaVersion: 8 }, // to enable features such as async/await
// We don't want to lint generated files nor node_modules, but we want to lint .prettierrc.json (ignored by default by eslint)
ignorePatterns: ["node_modules/*", ".next/*", ".out/*", "!.prettierrc.json"],
extends: ["eslint:recommended", "next", "prettier"],
settings: { react: { version: "detect" } },
overrides: [
{
files: [".prettierrc.json"],
// default parser esprima does not support json
parser: "@typescript-eslint/parser",
},
// This configuration will apply only to TypeScript files
{
files: ["**/*.ts", "**/*.tsx", "src/**/*.js"],
parser: "@typescript-eslint/parser",
env: {
browser: true,
node: true,
es6: true,
},
extends: [
"plugin:@typescript-eslint/recommended", // TypeScript rules
"plugin:jsx-a11y/recommended", // Accessibility rules
],
plugins: ["no-switch-statements"],
rules: {
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-unused-vars": ["error"],
"@typescript-eslint/member-ordering": [
"error",
{
default: { memberTypes: "never", order: "alphabetically" },
classes: ["field", "constructor", "method"],
interfaces: ["signature", "method", "constructor", "field"],
},
],
curly: "error",
"import/order": [
"error",
{
groups: [["external", "builtin"]],
"newlines-between": "always",
},
],
"jsx-a11y/anchor-is-valid": "off",
"no-console": "error",
"no-switch-statements/no-switch": "error",
"prefer-const": ["error", {}],
"react/jsx-handler-names": [
"error",
{
eventHandlerPrefix: "on",
eventHandlerPropPrefix: "on",
},
],
"react/jsx-no-target-blank": "error",
"react/jsx-sort-props": [
"error",
{
ignoreCase: true,
reservedFirst: true,
},
],
"react/no-danger": "error",
"react/no-deprecated": "error",
"react/no-typos": "error",
"react/no-unknown-property": "error",
"react/no-unsafe": [
"error",
{
checkAliases: true,
},
],
"react/no-unused-prop-types": "error",
"react/prefer-stateless-function": "error",
"react/prop-types": "off",
"react/react-in-jsx-scope": "off",
"react-hooks/exhaustive-deps": "error",
"react/self-closing-comp": [
"error",
{
component: true,
html: true,
},
],
"sort-keys": "error",
"sort-vars": "error",
},
},
],
};