Skip to content

Commit f95e397

Browse files
Bump @typescript-eslint/eslint-plugin from 3.0.2 to 4.0.0
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 3.0.2 to 4.0.0. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.0.0/packages/eslint-plugin) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
1 parent ada9a79 commit f95e397

File tree

2 files changed

+72
-6
lines changed

2 files changed

+72
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"devDependencies": {
3232
"@types/jest": "^25.2.3",
3333
"@types/react": "^16.9.35",
34-
"@typescript-eslint/eslint-plugin": "^3.0.2",
34+
"@typescript-eslint/eslint-plugin": "^4.0.0",
3535
"@typescript-eslint/parser": "^3.0.2",
3636
"concurrently": "^5.2.0",
3737
"docz": "^2.3.1",

yarn.lock

+71-5
Original file line numberDiff line numberDiff line change
@@ -2438,12 +2438,14 @@
24382438
regexpp "^3.0.0"
24392439
tsutils "^3.17.1"
24402440

2441-
"@typescript-eslint/eslint-plugin@^3.0.2":
2442-
version "3.0.2"
2443-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-3.0.2.tgz#4a114a066e2f9659b25682ee59d4866e15a17ec3"
2444-
integrity sha512-ER3bSS/A/pKQT/hjMGCK8UQzlL0yLjuCZ/G8CDFJFVTfl3X65fvq2lNYqOG8JPTfrPa2RULCdwfOyFjZEMNExQ==
2441+
"@typescript-eslint/eslint-plugin@^4.0.0":
2442+
version "4.0.0"
2443+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-4.0.0.tgz#99349a501447fed91de18346705c0c65cf603bee"
2444+
integrity sha512-5e6q1TR7gS2P+8W2xndCu7gBh3BzmYEo70OyIdsmCmknHha/yNbz2vdevl+tP1uoaMOcrzg4gyrAijuV3DDBHA==
24452445
dependencies:
2446-
"@typescript-eslint/experimental-utils" "3.0.2"
2446+
"@typescript-eslint/experimental-utils" "4.0.0"
2447+
"@typescript-eslint/scope-manager" "4.0.0"
2448+
debug "^4.1.1"
24472449
functional-red-black-tree "^1.0.1"
24482450
regexpp "^3.0.0"
24492451
semver "^7.3.2"
@@ -2469,6 +2471,18 @@
24692471
eslint-scope "^5.0.0"
24702472
eslint-utils "^2.0.0"
24712473

2474+
"@typescript-eslint/experimental-utils@4.0.0":
2475+
version "4.0.0"
2476+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-4.0.0.tgz#fbec21a3b5ab59127edb6ce2e139ed378cc50eb5"
2477+
integrity sha512-hbX6zR+a/vcpFVNJYN/Nbd7gmaMosDTxHEKcvmhWeWcq/0UDifrqmCfkkodbAKL46Fn4ekSBMTyq2zlNDzcQxw==
2478+
dependencies:
2479+
"@types/json-schema" "^7.0.3"
2480+
"@typescript-eslint/scope-manager" "4.0.0"
2481+
"@typescript-eslint/types" "4.0.0"
2482+
"@typescript-eslint/typescript-estree" "4.0.0"
2483+
eslint-scope "^5.0.0"
2484+
eslint-utils "^2.0.0"
2485+
24722486
"@typescript-eslint/parser@^2.24.0", "@typescript-eslint/parser@^2.28.0":
24732487
version "2.34.0"
24742488
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-2.34.0.tgz#50252630ca319685420e9a39ca05fe185a256bc8"
@@ -2489,6 +2503,19 @@
24892503
"@typescript-eslint/typescript-estree" "3.0.2"
24902504
eslint-visitor-keys "^1.1.0"
24912505

2506+
"@typescript-eslint/scope-manager@4.0.0":
2507+
version "4.0.0"
2508+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-4.0.0.tgz#8c9e3b3b8cdf5a1fbe671d9fad73ff67bc027ea8"
2509+
integrity sha512-9gcWUPoWo7gk/+ZQPg7L1ySRmR5HLIy3Vu6/LfhQbuzIkGm6v2CGIjpVRISoDLFRovNRDImd4aP/sa8O4yIEBg==
2510+
dependencies:
2511+
"@typescript-eslint/types" "4.0.0"
2512+
"@typescript-eslint/visitor-keys" "4.0.0"
2513+
2514+
"@typescript-eslint/types@4.0.0":
2515+
version "4.0.0"
2516+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-4.0.0.tgz#ec1f9fc06b8558a1d5afa6e337182d08beece7f5"
2517+
integrity sha512-bK+c2VLzznX2fUWLK6pFDv3cXGTp7nHIuBMq1B9klA+QCsqLHOOqe5TQReAQDl7DN2RfH+neweo0oC5hYlG7Rg==
2518+
24922519
"@typescript-eslint/typescript-estree@2.34.0":
24932520
version "2.34.0"
24942521
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz#14aeb6353b39ef0732cc7f1b8285294937cf37d5"
@@ -2515,6 +2542,28 @@
25152542
semver "^7.3.2"
25162543
tsutils "^3.17.1"
25172544

2545+
"@typescript-eslint/typescript-estree@4.0.0":
2546+
version "4.0.0"
2547+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-4.0.0.tgz#2244c63de2f2190bc5718eb0fb3fd2c437d42097"
2548+
integrity sha512-ewFMPi2pMLDNIXGMPdf8r7El2oPSZw9PEYB0j+WcpKd7AX2ARmajGa7RUHTukllWX2bj4vWX6JLE1Oih2BMokA==
2549+
dependencies:
2550+
"@typescript-eslint/types" "4.0.0"
2551+
"@typescript-eslint/visitor-keys" "4.0.0"
2552+
debug "^4.1.1"
2553+
globby "^11.0.1"
2554+
is-glob "^4.0.1"
2555+
lodash "^4.17.15"
2556+
semver "^7.3.2"
2557+
tsutils "^3.17.1"
2558+
2559+
"@typescript-eslint/visitor-keys@4.0.0":
2560+
version "4.0.0"
2561+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-4.0.0.tgz#e2bbb69d98076d6a3f06abcb2048225a74362c33"
2562+
integrity sha512-sTouJbv6rjVJeTE4lpSBVYXq/u5K3gbB6LKt7ccFEZPTZB/VeQ0ssUz9q5Hx++sCqBbdF8PzrrgvEnicXAR6NQ==
2563+
dependencies:
2564+
"@typescript-eslint/types" "4.0.0"
2565+
eslint-visitor-keys "^2.0.0"
2566+
25182567
"@urql/core@^1.12.0":
25192568
version "1.12.0"
25202569
resolved "https://registry.yarnpkg.com/@urql/core/-/core-1.12.0.tgz#8a41de01a1a1145e8bea736dfb0ba8574daad8ff"
@@ -6275,6 +6324,11 @@ eslint-visitor-keys@^1.1.0:
62756324
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.1.0.tgz#e2a82cea84ff246ad6fb57f9bde5b46621459ec2"
62766325
integrity sha512-8y9YjtM1JBJU/A9Kc+SbaOV4y29sSWckBwMHa+FGtVj5gN/sbnKDf6xJUl+8g7FAij9LVaP8C24DUiH/f/2Z9A==
62776326

6327+
eslint-visitor-keys@^2.0.0:
6328+
version "2.1.0"
6329+
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303"
6330+
integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==
6331+
62786332
eslint@^6.8.0:
62796333
version "6.8.0"
62806334
resolved "https://registry.yarnpkg.com/eslint/-/eslint-6.8.0.tgz#62262d6729739f9275723824302fb227c8c93ffb"
@@ -7972,6 +8026,18 @@ globby@^10.0.1:
79728026
merge2 "^1.2.3"
79738027
slash "^3.0.0"
79748028

8029+
globby@^11.0.1:
8030+
version "11.0.3"
8031+
resolved "https://registry.yarnpkg.com/globby/-/globby-11.0.3.tgz#9b1f0cb523e171dd1ad8c7b2a9fb4b644b9593cb"
8032+
integrity sha512-ffdmosjA807y7+lA1NM0jELARVmYul/715xiILEjo3hBLPTcirgQNnXECn5g3mtR8TOLCVbkfua1Hpen25/Xcg==
8033+
dependencies:
8034+
array-union "^2.1.0"
8035+
dir-glob "^3.0.1"
8036+
fast-glob "^3.1.1"
8037+
ignore "^5.1.4"
8038+
merge2 "^1.3.0"
8039+
slash "^3.0.0"
8040+
79758041
globby@^6.1.0:
79768042
version "6.1.0"
79778043
resolved "https://registry.yarnpkg.com/globby/-/globby-6.1.0.tgz#f5a6d70e8395e21c858fb0489d64df02424d506c"

0 commit comments

Comments
 (0)