-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.js
45 lines (45 loc) · 1.1 KB
/
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
37
38
39
40
41
42
43
44
45
module.exports = {
parser: "@typescript-eslint/parser",
parserOptions: {
project: "./tsconfig.json",
ecmaFeatures: {
jsx: true,
},
ecmaVersion: 2018,
sourceType: "module",
},
env: {
browser: true,
node: true,
es6: true,
},
extends: ["./rules/import.js"]
.map(require.resolve)
.concat([
"plugin:react/recommended",
"plugin:@typescript-eslint/recommended",
"plugin:@typescript-eslint/recommended-requiring-type-checking",
]),
plugins: ["react", "react-hooks"],
rules: {
"@typescript-eslint/no-floating-promises": "off",
"@typescript-eslint/no-unused-vars": [
"error",
{ ignoreRestSiblings: true },
],
"no-unused-vars": "off",
"react/react-in-jsx-scope": "off",
"react/jsx-props-no-spreading": "off",
"react/jsx-curly-brace-presence": [
"error",
{
props: "always",
children: "ignore",
},
],
"react/require-default-props": "off",
"react/function-component-definition": "error",
"jsx-quotes": ["error", "prefer-single"],
},
ignorePatterns: ["*.js"],
};