Skip to content

Commit fef5f39

Browse files
committed
style: fixed eslint settings / vscode
1 parent c36504f commit fef5f39

File tree

6 files changed

+48
-135
lines changed

6 files changed

+48
-135
lines changed

.eslintrc.js

-6
This file was deleted.

.eslintrc.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"extends": "satya164",
3+
"rules": {
4+
"react-native/no-inline-styles": 0
5+
},
6+
"env": {
7+
"node": true,
8+
"browser": true,
9+
"react-native/react-native": true
10+
}
11+
}

.prettierrc

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"tabWidth": 2,
3+
"useTabs": false,
4+
"singleQuote": true,
5+
"trailingComma": "es5"
6+
}

.vscode/settings.json

+19-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,22 @@
11
{
2-
"prettier.eslintIntegration": true,
3-
"javascript.validate.enable": false,
42
"flow.useNPMPackagedFlow": true,
5-
"java.configuration.updateBuildConfiguration": "disabled"
3+
"java.configuration.updateBuildConfiguration": "disabled",
4+
"eslint.validate": [
5+
{
6+
"language": "javascript",
7+
"autoFix": true
8+
},
9+
{
10+
"language": "javascriptreact",
11+
"autoFix": true
12+
},
13+
{
14+
"language": "typescript",
15+
"autoFix": true
16+
},
17+
{
18+
"language": "typescriptreact",
19+
"autoFix": true
20+
}
21+
]
622
}

package.json

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
"devDependencies": {
4848
"@commitlint/config-conventional": "^8.2.0",
4949
"@react-native-community/bob": "^0.7.0",
50-
"@react-native-community/eslint-config": "^0.0.5",
5150
"@types/react": "^16.9.11",
5251
"@types/react-native": "^0.60.22",
5352
"commitlint": "^8.2.0",

yarn.lock

+12-125
Original file line numberDiff line numberDiff line change
@@ -1086,23 +1086,6 @@
10861086
wcwidth "^1.0.1"
10871087
ws "^1.1.0"
10881088

1089-
"@react-native-community/eslint-config@^0.0.5":
1090-
version "0.0.5"
1091-
resolved "https://registry.yarnpkg.com/@react-native-community/eslint-config/-/eslint-config-0.0.5.tgz#584f6493258202a57efc22e7be66966e43832795"
1092-
integrity sha512-jwO2tnKaTPTLX5XYXMHGEnFdf543SU7jz98/OF5mDH3b7lP+BOaCD+jVfqqHoDRkcqyPlYiR1CgwVGWpi0vMWg==
1093-
dependencies:
1094-
"@typescript-eslint/eslint-plugin" "^1.5.0"
1095-
"@typescript-eslint/parser" "^1.5.0"
1096-
babel-eslint "10.0.1"
1097-
eslint-plugin-eslint-comments "^3.1.1"
1098-
eslint-plugin-flowtype "2.50.3"
1099-
eslint-plugin-jest "22.4.1"
1100-
eslint-plugin-prettier "2.6.2"
1101-
eslint-plugin-react "7.12.4"
1102-
eslint-plugin-react-hooks "^1.5.1"
1103-
eslint-plugin-react-native "3.6.0"
1104-
prettier "1.16.4"
1105-
11061089
"@types/babel__core@^7.1.0":
11071090
version "7.1.3"
11081091
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.3.tgz#e441ea7df63cd080dfcd02ab199e6d16a735fc30"
@@ -1259,17 +1242,6 @@
12591242
dependencies:
12601243
"@types/yargs-parser" "*"
12611244

1262-
"@typescript-eslint/eslint-plugin@^1.5.0":
1263-
version "1.13.0"
1264-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-1.13.0.tgz#22fed9b16ddfeb402fd7bcde56307820f6ebc49f"
1265-
integrity sha512-WQHCozMnuNADiqMtsNzp96FNox5sOVpU8Xt4meaT4em8lOG1SrOv92/mUbEHQVh90sldKSfcOc/I0FOb/14G1g==
1266-
dependencies:
1267-
"@typescript-eslint/experimental-utils" "1.13.0"
1268-
eslint-utils "^1.3.1"
1269-
functional-red-black-tree "^1.0.1"
1270-
regexpp "^2.0.1"
1271-
tsutils "^3.7.0"
1272-
12731245
"@typescript-eslint/eslint-plugin@^2.3.1":
12741246
version "2.7.0"
12751247
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-2.7.0.tgz#dff176bdb73dfd7e2e43062452189bd1b9db6021"
@@ -1281,15 +1253,6 @@
12811253
regexpp "^2.0.1"
12821254
tsutils "^3.17.1"
12831255

1284-
"@typescript-eslint/experimental-utils@1.13.0", "@typescript-eslint/experimental-utils@^1.13.0":
1285-
version "1.13.0"
1286-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz#b08c60d780c0067de2fb44b04b432f540138301e"
1287-
integrity sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==
1288-
dependencies:
1289-
"@types/json-schema" "^7.0.3"
1290-
"@typescript-eslint/typescript-estree" "1.13.0"
1291-
eslint-scope "^4.0.0"
1292-
12931256
"@typescript-eslint/experimental-utils@2.7.0":
12941257
version "2.7.0"
12951258
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-2.7.0.tgz#58d790a3884df3041b5a5e08f9e5e6b7c41864b5"
@@ -1299,15 +1262,14 @@
12991262
"@typescript-eslint/typescript-estree" "2.7.0"
13001263
eslint-scope "^5.0.0"
13011264

1302-
"@typescript-eslint/parser@^1.5.0":
1265+
"@typescript-eslint/experimental-utils@^1.13.0":
13031266
version "1.13.0"
1304-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-1.13.0.tgz#61ac7811ea52791c47dc9fd4dd4a184fae9ac355"
1305-
integrity sha512-ITMBs52PCPgLb2nGPoeT4iU3HdQZHcPaZVw+7CsFagRJHUhyeTgorEwHXhFf3e7Evzi8oujKNpHc8TONth8AdQ==
1267+
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-1.13.0.tgz#b08c60d780c0067de2fb44b04b432f540138301e"
1268+
integrity sha512-zmpS6SyqG4ZF64ffaJ6uah6tWWWgZ8m+c54XXgwFtUv0jNz8aJAVx8chMCvnk7yl6xwn8d+d96+tWp7fXzTuDg==
13061269
dependencies:
1307-
"@types/eslint-visitor-keys" "^1.0.0"
1308-
"@typescript-eslint/experimental-utils" "1.13.0"
1270+
"@types/json-schema" "^7.0.3"
13091271
"@typescript-eslint/typescript-estree" "1.13.0"
1310-
eslint-visitor-keys "^1.0.0"
1272+
eslint-scope "^4.0.0"
13111273

13121274
"@typescript-eslint/parser@^2.3.1":
13131275
version "2.7.0"
@@ -1691,18 +1653,6 @@ aws4@^1.8.0:
16911653
resolved "https://registry.yarnpkg.com/aws4/-/aws4-1.8.0.tgz#f0e003d9ca9e7f59c7a508945d7b2ef9a04a542f"
16921654
integrity sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==
16931655

1694-
babel-eslint@10.0.1:
1695-
version "10.0.1"
1696-
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.1.tgz#919681dc099614cd7d31d45c8908695092a1faed"
1697-
integrity sha512-z7OT1iNV+TjOwHNLLyJk+HN+YVWX+CLE6fPD2SymJZOZQBs+QIexFjhm4keGTm8MW9xr4EC9Q0PbaLB24V5GoQ==
1698-
dependencies:
1699-
"@babel/code-frame" "^7.0.0"
1700-
"@babel/parser" "^7.0.0"
1701-
"@babel/traverse" "^7.0.0"
1702-
"@babel/types" "^7.0.0"
1703-
eslint-scope "3.7.1"
1704-
eslint-visitor-keys "^1.0.0"
1705-
17061656
babel-eslint@^10.0.3:
17071657
version "10.0.3"
17081658
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-10.0.3.tgz#81a2c669be0f205e19462fed2482d33e4687a88a"
@@ -2893,21 +2843,14 @@ eslint-plugin-babel@^5.3.0:
28932843
dependencies:
28942844
eslint-rule-composer "^0.3.0"
28952845

2896-
eslint-plugin-eslint-comments@^3.1.1, eslint-plugin-eslint-comments@^3.1.2:
2846+
eslint-plugin-eslint-comments@^3.1.2:
28972847
version "3.1.2"
28982848
resolved "https://registry.yarnpkg.com/eslint-plugin-eslint-comments/-/eslint-plugin-eslint-comments-3.1.2.tgz#4ef6c488dbe06aa1627fea107b3e5d059fc8a395"
28992849
integrity sha512-QexaqrNeteFfRTad96W+Vi4Zj1KFbkHHNMMaHZEYcovKav6gdomyGzaxSDSL3GoIyUOo078wRAdYlu1caiauIQ==
29002850
dependencies:
29012851
escape-string-regexp "^1.0.5"
29022852
ignore "^5.0.5"
29032853

2904-
eslint-plugin-flowtype@2.50.3:
2905-
version "2.50.3"
2906-
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.50.3.tgz#61379d6dce1d010370acd6681740fd913d68175f"
2907-
integrity sha512-X+AoKVOr7Re0ko/yEXyM5SSZ0tazc6ffdIOocp2fFUlWoDt7DV0Bz99mngOkAFLOAWjqRA5jPwqUCbrx13XoxQ==
2908-
dependencies:
2909-
lodash "^4.17.10"
2910-
29112854
eslint-plugin-flowtype@^4.3.0:
29122855
version "4.3.0"
29132856
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-4.3.0.tgz#06d0837ac341caf369e7e6dbb112dd7fd21acf17"
@@ -2932,38 +2875,20 @@ eslint-plugin-import@^2.18.2:
29322875
read-pkg-up "^2.0.0"
29332876
resolve "^1.11.0"
29342877

2935-
eslint-plugin-jest@22.4.1:
2936-
version "22.4.1"
2937-
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz#a5fd6f7a2a41388d16f527073b778013c5189a9c"
2938-
integrity sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg==
2939-
29402878
eslint-plugin-jest@^22.17.0:
29412879
version "22.21.0"
29422880
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.21.0.tgz#8137294645866636160487d9764224b9a43e2eb1"
29432881
integrity sha512-OaqnSS7uBgcGiqXUiEnjoqxPNKvR4JWG5mSRkzVoR6+vDwlqqp11beeql1hYs0HTbdhiwrxWLxbX0Vx7roG3Ew==
29442882
dependencies:
29452883
"@typescript-eslint/experimental-utils" "^1.13.0"
29462884

2947-
eslint-plugin-prettier@2.6.2:
2948-
version "2.6.2"
2949-
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.2.tgz#71998c60aedfa2141f7bfcbf9d1c459bf98b4fad"
2950-
integrity sha512-tGek5clmW5swrAx1mdPYM8oThrBE83ePh7LeseZHBWfHVGrHPhKn7Y5zgRMbU/9D5Td9K4CEmUPjGxA7iw98Og==
2951-
dependencies:
2952-
fast-diff "^1.1.1"
2953-
jest-docblock "^21.0.0"
2954-
29552885
eslint-plugin-prettier@^3.1.1:
29562886
version "3.1.1"
29572887
resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-3.1.1.tgz#507b8562410d02a03f0ddc949c616f877852f2ba"
29582888
integrity sha512-A+TZuHZ0KU0cnn56/9mfR7/KjUJ9QNVXUhwvRFSR7PGPe0zQR6PTkmyqg1AtUUEOzTqeRsUwyKFh0oVZKVCrtA==
29592889
dependencies:
29602890
prettier-linter-helpers "^1.0.0"
29612891

2962-
eslint-plugin-react-hooks@^1.5.1:
2963-
version "1.7.0"
2964-
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-1.7.0.tgz#6210b6d5a37205f0b92858f895a4e827020a7d04"
2965-
integrity sha512-iXTCFcOmlWvw4+TOE8CLWj6yX1GwzT0Y6cUfHHZqWnSk144VmVIRcVGtUAzrLES7C798lmvnt02C7rxaOX1HNA==
2966-
29672892
eslint-plugin-react-hooks@^2.1.0:
29682893
version "2.2.0"
29692894
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-2.2.0.tgz#078264e9e388da6929ace09d6abe92c85963aff4"
@@ -2974,33 +2899,13 @@ eslint-plugin-react-native-globals@^0.1.1:
29742899
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2"
29752900
integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==
29762901

2977-
eslint-plugin-react-native@3.6.0:
2978-
version "3.6.0"
2979-
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.6.0.tgz#7cad3b7c6159df6d26fe3252c6c5417a17f27b4b"
2980-
integrity sha512-BEQcHZ06hZSBYWFVuNEq0xuui5VEsWpHDsZGBtfadHfCRqRMUrkYPgdDb3bpc60qShHE83kqIv59uKdinEg91Q==
2981-
dependencies:
2982-
eslint-plugin-react-native-globals "^0.1.1"
2983-
29842902
eslint-plugin-react-native@^3.7.0:
29852903
version "3.8.1"
29862904
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.8.1.tgz#92811e37191ecb0d29c0f0a0c9e5c943ee573821"
29872905
integrity sha512-6Z4s4nvgFRdda/1s1+uu4a6EMZwEjjJ9Bk/1yBImv0fd9U2CsGu2cUakAtV83cZKhizbWhSouXoaK4JtlScdFg==
29882906
dependencies:
29892907
eslint-plugin-react-native-globals "^0.1.1"
29902908

2991-
eslint-plugin-react@7.12.4:
2992-
version "7.12.4"
2993-
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.12.4.tgz#b1ecf26479d61aee650da612e425c53a99f48c8c"
2994-
integrity sha512-1puHJkXJY+oS1t467MjbqjvX53uQ05HXwjqDgdbGBqf5j9eeydI54G3KwiJmWciQ0HTBacIKw2jgwSBSH3yfgQ==
2995-
dependencies:
2996-
array-includes "^3.0.3"
2997-
doctrine "^2.1.0"
2998-
has "^1.0.3"
2999-
jsx-ast-utils "^2.0.1"
3000-
object.fromentries "^2.0.0"
3001-
prop-types "^15.6.2"
3002-
resolve "^1.9.0"
3003-
30042909
eslint-plugin-react@^7.14.3:
30052910
version "7.16.0"
30062911
resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.16.0.tgz#9928e4f3e2122ed3ba6a5b56d0303ba3e41d8c09"
@@ -3021,14 +2926,6 @@ eslint-rule-composer@^0.3.0:
30212926
resolved "https://registry.yarnpkg.com/eslint-rule-composer/-/eslint-rule-composer-0.3.0.tgz#79320c927b0c5c0d3d3d2b76c8b4a488f25bbaf9"
30222927
integrity sha512-bt+Sh8CtDmn2OajxvNO+BX7Wn4CIWMpTRm3MaiKPCQcnnlm0CS2mhui6QaoeQugs+3Kj2ESKEEGJUdVafwhiCg==
30232928

3024-
eslint-scope@3.7.1:
3025-
version "3.7.1"
3026-
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-3.7.1.tgz#3d63c3edfda02e06e01a452ad88caacc7cdcb6e8"
3027-
integrity sha1-PWPD7f2gLgbgGkUq2IyqzHzctug=
3028-
dependencies:
3029-
esrecurse "^4.1.0"
3030-
estraverse "^4.1.1"
3031-
30322929
eslint-scope@^4.0.0:
30332930
version "4.0.3"
30342931
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
@@ -3045,7 +2942,7 @@ eslint-scope@^5.0.0:
30452942
esrecurse "^4.1.0"
30462943
estraverse "^4.1.1"
30472944

3048-
eslint-utils@^1.3.1, eslint-utils@^1.4.2, eslint-utils@^1.4.3:
2945+
eslint-utils@^1.4.2, eslint-utils@^1.4.3:
30492946
version "1.4.3"
30502947
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.3.tgz#74fec7c54d0776b6f67e0251040b5806564e981f"
30512948
integrity sha512-fbBN5W2xdY45KulGXmLHZ3c3FHfVYmKg0IrAKGOkT/464PQsx2UeIzfz1RmEci+KLm1bBaAzZAh8+/E+XAeZ8Q==
@@ -3329,7 +3226,7 @@ fast-deep-equal@^2.0.1:
33293226
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz#7b05218ddf9667bf7f370bf7fdb2cb15fdd0aa49"
33303227
integrity sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=
33313228

3332-
fast-diff@^1.1.1, fast-diff@^1.1.2:
3229+
fast-diff@^1.1.2:
33333230
version "1.2.0"
33343231
resolved "https://registry.yarnpkg.com/fast-diff/-/fast-diff-1.2.0.tgz#73ee11982d86caaf7959828d519cfe927fac5f03"
33353232
integrity sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==
@@ -4430,11 +4327,6 @@ jest-diff@^24.9.0:
44304327
jest-get-type "^24.9.0"
44314328
pretty-format "^24.9.0"
44324329

4433-
jest-docblock@^21.0.0:
4434-
version "21.2.0"
4435-
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414"
4436-
integrity sha512-5IZ7sY9dBAYSV+YjQ0Ovb540Ku7AO9Z5o2Cg789xj167iQuZ2cG+z0f3Uct6WeYLbU6aQiM2pCs7sZ+4dotydw==
4437-
44384330
jest-docblock@^24.3.0:
44394331
version "24.9.0"
44404332
resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-24.9.0.tgz#7970201802ba560e1c4092cc25cbedf5af5a8ce2"
@@ -4871,7 +4763,7 @@ jsprim@^1.2.2:
48714763
json-schema "0.2.3"
48724764
verror "1.10.0"
48734765

4874-
jsx-ast-utils@^2.0.1, jsx-ast-utils@^2.2.1:
4766+
jsx-ast-utils@^2.2.1:
48754767
version "2.2.3"
48764768
resolved "https://registry.yarnpkg.com/jsx-ast-utils/-/jsx-ast-utils-2.2.3.tgz#8a9364e402448a3ce7f14d357738310d9248054f"
48774769
integrity sha512-EdIHFMm+1BPynpKOpdPqiOsvnIrInRGJD7bzPZdPkjitQEqpdpUuFpq4T0npZFKTiB3RhWFdGN+oqOJIdhDhQA==
@@ -5056,7 +4948,7 @@ lodash@4.17.14:
50564948
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
50574949
integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
50584950

5059-
lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
4951+
lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.13, lodash@^4.17.14, lodash@^4.17.15, lodash@^4.17.5, lodash@^4.2.1, lodash@^4.3.0, lodash@^4.6.1:
50604952
version "4.17.15"
50614953
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
50624954
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
@@ -6349,11 +6241,6 @@ prettier-linter-helpers@^1.0.0:
63496241
dependencies:
63506242
fast-diff "^1.1.2"
63516243

6352-
prettier@1.16.4:
6353-
version "1.16.4"
6354-
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717"
6355-
integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g==
6356-
63576244
prettier@^1.19.1:
63586245
version "1.19.1"
63596246
resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.19.1.tgz#f7d7f5ff8a9cd872a7be4ca142095956a60797cb"
@@ -6874,7 +6761,7 @@ resolve@1.1.7:
68746761
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.1.7.tgz#203114d82ad2c5ed9e8e0411b3932875e889e97b"
68756762
integrity sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=
68766763

6877-
resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1, resolve@^1.9.0:
6764+
resolve@^1.10.0, resolve@^1.11.0, resolve@^1.12.0, resolve@^1.3.2, resolve@^1.5.0, resolve@^1.8.1:
68786765
version "1.12.0"
68796766
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
68806767
integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
@@ -7700,7 +7587,7 @@ tslib@^1.8.1, tslib@^1.9.0:
77007587
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
77017588
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
77027589

7703-
tsutils@^3.17.1, tsutils@^3.7.0:
7590+
tsutils@^3.17.1:
77047591
version "3.17.1"
77057592
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-3.17.1.tgz#ed719917f11ca0dee586272b2ac49e015a2dd759"
77067593
integrity sha512-kzeQ5B8H3w60nFY2g8cJIuH7JDpsALXySGtwGJ0p2LSjLgay3NdIpqq5SoOBe46bKDW2iq25irHCr8wjomUS2g==

0 commit comments

Comments
 (0)