-
Notifications
You must be signed in to change notification settings - Fork 2
/
.eslintrc.js
86 lines (82 loc) · 1.82 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
const path = require("path");
module.exports = {
parser: "@typescript-eslint/parser",
plugins: ["react", "react-hooks", "@typescript-eslint", "jsx-a11y", "testing-library", "jest-dom"],
env: {
browser: true,
jest: true,
es6: true
},
extends: [
"@hipo/eslint-config-base",
"@hipo/eslint-config-react",
"@hipo/eslint-config-typescript",
"plugin:jsx-a11y/recommended",
"plugin:jest-dom/recommended",
"plugin:testing-library/react",
"plugin:import/typescript",
"prettier"
],
parserOptions: {
project: path.resolve(__dirname, "./tsconfig.json"),
tsconfigRootDir: __dirname,
ecmaVersion: 2018,
sourceType: "module",
ecmaFeatures: {
jsx: true
},
createDefaultProgram: true
},
settings: {
react: {
// Tells eslint-plugin-react to automatically detect the version of React to use
version: "detect"
}
},
globals: {
__dirname: true,
module: true
},
overrides: [
{
files: ["*.config.js"],
rules: {
"@typescript-eslint/no-var-requires": "off"
}
},
{
files: ["*.d.ts"],
rules: {
"newline-after-var": "off"
}
}
],
rules: {
// 👇🏻 Rules for hooks
"react-hooks/rules-of-hooks": 2,
"react-hooks/exhaustive-deps": 1,
// 👇🏻 `@typescript-eslint` overrides
"@typescript-eslint/ban-ts-comment": 0,
"func-names": 0,
"id-length": 0,
"react/destructuring-assignment": 0,
"react/jsx-handler-names": ['error', {
"eventHandlerPrefix": false,
"eventHandlerPropPrefix": 'on',
}],
"react/jsx-filename-extension": [
1,
{
extensions: [".jsx", ".tsx"]
}
],
"react/sort-comp": [
2,
{
groups: {
rendering: ["render", "/^render.+$/"]
}
}
]
}
};