Skip to content

Commit 6f3569f

Browse files
QUA-143: update eslint-plugin-react (#506)
1 parent c894d1c commit 6f3569f

File tree

2 files changed

+69
-2
lines changed

2 files changed

+69
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@
7474
"eslint-plugin-prettier": "^3.1.4",
7575
"eslint-plugin-promise": "^4.1.1",
7676
"eslint-plugin-ramda": "^2.4.0",
77-
"eslint-plugin-react": "^7.13.0",
77+
"eslint-plugin-react": "^7.21.0",
7878
"eslint-plugin-react-hooks": "^1.6.0",
7979
"eslint-plugin-react-native": "^3.7.0",
8080
"eslint-plugin-security": "1.4.0",

yarn.lock

+68-1
Original file line numberDiff line numberDiff line change
@@ -813,6 +813,14 @@ cache-base@^1.0.1:
813813
union-value "^1.0.0"
814814
unset-value "^1.0.0"
815815

816+
call-bind@^1.0.0:
817+
version "1.0.0"
818+
resolved "https://registry.yarnpkg.com/call-bind/-/call-bind-1.0.0.tgz#24127054bb3f9bdcb4b1fb82418186072f77b8ce"
819+
integrity sha512-AEXsYIyyDY3MCzbwdhzG3Jx1R0J2wetQyUynn6dYHAO+bg8l1k7jwZtRv4ryryFs7EP+NDlikJlVe59jr0cM2w==
820+
dependencies:
821+
function-bind "^1.1.1"
822+
get-intrinsic "^1.0.0"
823+
816824
caller-path@^0.1.0:
817825
version "0.1.0"
818826
resolved "https://registry.yarnpkg.com/caller-path/-/caller-path-0.1.0.tgz#94085ef63581ecd3daa92444a8fe94e82577751f"
@@ -2054,7 +2062,7 @@ eslint-plugin-react@7.3.0:
20542062
jsx-ast-utils "^2.0.0"
20552063
prop-types "^15.5.10"
20562064

2057-
eslint-plugin-react@^7.10.0, eslint-plugin-react@^7.13.0:
2065+
eslint-plugin-react@^7.10.0:
20582066
version "7.16.0"
20592067
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09"
20602068
dependencies:
@@ -2085,6 +2093,23 @@ eslint-plugin-react@^7.20.6:
20852093
resolve "^1.17.0"
20862094
string.prototype.matchall "^4.0.2"
20872095

2096+
eslint-plugin-react@^7.21.0:
2097+
version "7.21.5"
2098+
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.21.5.tgz#50b21a412b9574bfe05b21db176e8b7b3b15bff3"
2099+
integrity sha512-8MaEggC2et0wSF6bUeywF7qQ46ER81irOdWS4QWxnnlAEsnzeBevk1sWh7fhpCghPpXb+8Ks7hvaft6L/xsR6g==
2100+
dependencies:
2101+
array-includes "^3.1.1"
2102+
array.prototype.flatmap "^1.2.3"
2103+
doctrine "^2.1.0"
2104+
has "^1.0.3"
2105+
jsx-ast-utils "^2.4.1 || ^3.0.0"
2106+
object.entries "^1.1.2"
2107+
object.fromentries "^2.0.2"
2108+
object.values "^1.1.1"
2109+
prop-types "^15.7.2"
2110+
resolve "^1.18.1"
2111+
string.prototype.matchall "^4.0.2"
2112+
20882113
eslint-plugin-scanjs-rules@>=0.1.4:
20892114
version "0.2.1"
20902115
resolved "https://registry.yarnpkg.com/eslint-plugin-scanjs-rules/-/eslint-plugin-scanjs-rules-0.2.1.tgz#a37403fde845df41277e03e5c2073f055d47942d"
@@ -2683,6 +2708,15 @@ get-func-name@^2.0.0:
26832708
version "2.0.0"
26842709
resolved "https://registry.yarnpkg.com/get-func-name/-/get-func-name-2.0.0.tgz#ead774abee72e20409433a066366023dd6887a41"
26852710

2711+
get-intrinsic@^1.0.0:
2712+
version "1.0.1"
2713+
resolved "https://registry.yarnpkg.com/get-intrinsic/-/get-intrinsic-1.0.1.tgz#94a9768fcbdd0595a1c9273aacf4c89d075631be"
2714+
integrity sha512-ZnWP+AmS1VUaLgTRy47+zKtjTxz+0xMpx3I52i+aalBK1QP19ggLF3Db89KJX7kjfOfP2eoa01qc++GwPgufPg==
2715+
dependencies:
2716+
function-bind "^1.1.1"
2717+
has "^1.0.3"
2718+
has-symbols "^1.0.1"
2719+
26862720
get-stdin@^5.0.1:
26872721
version "5.0.1"
26882722
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-5.0.1.tgz#122e161591e21ff4c52530305693f20e6393a398"
@@ -3060,6 +3094,13 @@ is-callable@^1.2.0:
30603094
resolved "https://registry.yarnpkg.com/is-callable/-/is-callable-1.2.1.tgz#4d1e21a4f437509d25ce55f8184350771421c96d"
30613095
integrity sha512-wliAfSzx6V+6WfMOmus1xy0XvSgf/dlStkvTfq7F0g4bOIW0PSUbnyse3NhDwdyYS1ozfUtAAySqTws3z9Eqgg==
30623096

3097+
is-core-module@^2.1.0:
3098+
version "2.2.0"
3099+
resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.2.0.tgz#97037ef3d52224d85163f5597b2b63d9afed981a"
3100+
integrity sha512-XRAfAdyyY5F5cOXn7hYQDqh2Xmii+DEfIcQGxK/uNwMHhIkPWO0g8msXcbzLe+MpGoR951MlqM/2iIlU4vKDdQ==
3101+
dependencies:
3102+
has "^1.0.3"
3103+
30633104
is-data-descriptor@^0.1.4:
30643105
version "0.1.4"
30653106
resolved "https://registry.yarnpkg.com/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz#0b5ee648388e2c860282e793f1856fec3f301b56"
@@ -3316,6 +3357,14 @@ jsx-ast-utils@^2.4.1:
33163357
array-includes "^3.1.1"
33173358
object.assign "^4.1.0"
33183359

3360+
"jsx-ast-utils@^2.4.1 || ^3.0.0":
3361+
version "3.1.0"
3362+
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-3.1.0.tgz#642f1d7b88aa6d7eb9d8f2210e166478444fa891"
3363+
integrity sha512-d4/UOjg+mxAWxCiF0c5UTSwyqbchkbqCvK87aBovhnh8GtysTjWmgC63tY0cJx/HzGgm9qnA147jVBdpOiQ2RA==
3364+
dependencies:
3365+
array-includes "^3.1.1"
3366+
object.assign "^4.1.1"
3367+
33193368
just-extend@^4.0.2:
33203369
version "4.0.2"
33213370
resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc"
@@ -3847,6 +3896,16 @@ object.assign@^4.1.0:
38473896
has-symbols "^1.0.0"
38483897
object-keys "^1.0.11"
38493898

3899+
object.assign@^4.1.1:
3900+
version "4.1.2"
3901+
resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.2.tgz#0ed54a342eceb37b38ff76eb831a0e788cb63940"
3902+
integrity sha512-ixT2L5THXsApyiUPYKmW+2EHpXXe5Ii3M+f4e+aJFAHao5amFRW6J0OO6c/LU8Be47utCx2GL89hxGB6XSmKuQ==
3903+
dependencies:
3904+
call-bind "^1.0.0"
3905+
define-properties "^1.1.3"
3906+
has-symbols "^1.0.1"
3907+
object-keys "^1.1.1"
3908+
38503909
object.entries@^1.1.0:
38513910
version "1.1.0"
38523911
resolved "https://registry.yarnpkg.com/object.entries/-/object.entries-1.1.0.tgz#2024fc6d6ba246aee38bdb0ffd5cfbcf371b7519"
@@ -4407,6 +4466,14 @@ resolve@^1.17.0:
44074466
dependencies:
44084467
path-parse "^1.0.6"
44094468

4469+
resolve@^1.18.1:
4470+
version "1.19.0"
4471+
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.19.0.tgz#1af5bf630409734a067cae29318aac7fa29a267c"
4472+
integrity sha512-rArEXAgsBG4UgRGcynxWIWKFvh/XZCcS8UJdHhwy91zwAvCZIbcs+vAbflgBnNjYMs/i/i+/Ux6IZhML1yPvxg==
4473+
dependencies:
4474+
is-core-module "^2.1.0"
4475+
path-parse "^1.0.6"
4476+
44104477
restore-cursor@^1.0.1:
44114478
version "1.0.1"
44124479
resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"

0 commit comments

Comments
 (0)