-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
36 lines (36 loc) · 838 Bytes
/
index.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
module.exports = {
extends: ["airbnb", "plugin:react/recommended", "generic-ts"],
plugins: ["react", "react-hooks"],
parserOptions: {
ecmaFeatures: {
jsx: true
}
},
rules: {
"react/display-name": "off",
"react/jsx-curly-newline": "off",
"react/jsx-filename-extension": [
"error",
{
extensions: [".tsx"]
}
],
"react/jsx-one-expression-per-line": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-wrap-multilines": ["error", { prop: "ignore" }],
"react/prop-types": "off",
"react-hooks/exhaustive-deps": "error",
"react-hooks/rules-of-hooks": "error"
},
settings: {
react: {
version: "detect"
}
},
ignorePatterns: [
"**/*.test.tsx",
"**/*.min.jsx",
"src/react-app-env.d.ts",
"src/serviceWorker.ts"
]
};