Skip to content

Commit 4d5ea13

Browse files
committed
release 4.5.0
2 parents 170a7ca + 790feae commit 4d5ea13

117 files changed

Lines changed: 4450 additions & 7192 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.eslintrc.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
},
77
"extends": [
88
"eslint:recommended",
9-
"plugin:react/recommended"
9+
"plugin:react/recommended",
10+
"plugin:react-hooks/recommended"
1011
],
1112
"settings": {
1213
"react": {
@@ -33,12 +34,20 @@
3334
"requireConfigFile": false
3435
},
3536
"plugins": [
37+
"react",
3638
"react-hooks"
3739
],
3840
"rules": {
3941
"react/prop-types": 0,
4042
"react-hooks/rules-of-hooks": "warn",
4143
"react-hooks/exhaustive-deps": "warn",
42-
"react/no-children-prop": 0
44+
"react/no-children-prop": 0,
45+
"no-unused-vars": [
46+
"error",
47+
{
48+
"argsIgnorePattern": "^_",
49+
"varsIgnorePattern": "^_"
50+
}
51+
]
4352
}
4453
}

0 commit comments

Comments
 (0)