Skip to content

Commit 72637c2

Browse files
chore(deps-dev): bump @callstack/eslint-config from 12.0.2 to 13.0.1 (#1103)
* chore(deps-dev): bump @callstack/eslint-config from 12.0.2 to 13.0.1 Bumps [@callstack/eslint-config](https://github.com/callstack/eslint-config-callstack) from 12.0.2 to 13.0.1. - [Release notes](https://github.com/callstack/eslint-config-callstack/releases) - [Commits](https://github.com/callstack/eslint-config-callstack/commits) --- updated-dependencies: - dependency-name: "@callstack/eslint-config" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * chore: run lint --fix Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Maciej Jastrzebski <mdjastrzebski@gmail.com>
1 parent 6cd87b9 commit 72637c2

File tree

5 files changed

+102
-101
lines changed

5 files changed

+102
-101
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"@babel/preset-flow": "^7.9.0",
3535
"@babel/preset-react": "^7.9.4",
3636
"@babel/preset-typescript": "^7.16.0",
37-
"@callstack/eslint-config": "^12.0.2",
37+
"@callstack/eslint-config": "^13.0.1",
3838
"@testing-library/jest-native": "~4.0.2",
3939
"@types/jest": "^29.0.0",
4040
"@types/react": "~18.0.18",

src/__tests__/questionsBoard.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ test('form submits two answers', () => {
5555
fireEvent.changeText(answerInputs[1], 'a2');
5656
fireEvent.press(getByText('Submit'));
5757

58-
expect(mockFn).toBeCalledWith({
58+
expect(mockFn).toHaveBeenCalledWith({
5959
'1': { q: 'q1', a: 'a1' },
6060
'2': { q: 'q2', a: 'a2' },
6161
});

src/__tests__/screen.test.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -52,16 +52,12 @@ test('screen works with nested re-mounting rerender', () => {
5252
});
5353

5454
test('screen throws without render', () => {
55-
expect(() => screen.container).toThrowError(
55+
expect(() => screen.container).toThrow('`render` method has not been called');
56+
expect(() => screen.debug()).toThrow('`render` method has not been called');
57+
expect(() => screen.debug.shallow()).toThrow(
5658
'`render` method has not been called'
5759
);
58-
expect(() => screen.debug()).toThrowError(
59-
'`render` method has not been called'
60-
);
61-
expect(() => screen.debug.shallow()).toThrowError(
62-
'`render` method has not been called'
63-
);
64-
expect(() => screen.getByText('Mt. Everest')).toThrowError(
60+
expect(() => screen.getByText('Mt. Everest')).toThrow(
6561
'`render` method has not been called'
6662
);
6763
});

src/queries/__tests__/testId.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ test('getByTestId returns only native elements', () => {
4949
expect(getAllByTestId('view')).toHaveLength(1);
5050
expect(getAllByTestId('button')).toHaveLength(1);
5151

52-
expect(() => getByTestId('myComponent')).toThrowError(
52+
expect(() => getByTestId('myComponent')).toThrow(
5353
'Unable to find an element with testID: myComponent'
5454
);
55-
expect(() => getAllByTestId('myComponent')).toThrowError(
55+
expect(() => getAllByTestId('myComponent')).toThrow(
5656
'Unable to find an element with testID: myComponent'
5757
);
5858
});

yarn.lock

Lines changed: 94 additions & 89 deletions
Original file line numberDiff line numberDiff line change
@@ -834,16 +834,16 @@
834834
dependencies:
835835
"@babel/helper-plugin-utils" "^7.10.4"
836836

837-
"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.18.6":
838-
version "7.18.10"
839-
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.18.10.tgz#ea47b2c4197102c196cbd10db9b3bb20daa820f1"
840-
integrity sha512-gCy7Iikrpu3IZjYZolFE4M1Sm+nrh1/6za2Ewj77Z+XirT4TsbJcvOFOyF+fRPwU6AKKK136CZxx6L8AbSFG6A==
837+
"@babel/plugin-transform-react-jsx@^7.0.0", "@babel/plugin-transform-react-jsx@^7.18.10", "@babel/plugin-transform-react-jsx@^7.18.6":
838+
version "7.19.0"
839+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.19.0.tgz#b3cbb7c3a00b92ec8ae1027910e331ba5c500eb9"
840+
integrity sha512-UVEvX3tXie3Szm3emi1+G63jyw1w5IcMY0FSKM+CRnKRI5Mr1YbCNgsSTwoTwKphQEG9P+QqmuRFneJPZuHNhg==
841841
dependencies:
842842
"@babel/helper-annotate-as-pure" "^7.18.6"
843843
"@babel/helper-module-imports" "^7.18.6"
844-
"@babel/helper-plugin-utils" "^7.18.9"
844+
"@babel/helper-plugin-utils" "^7.19.0"
845845
"@babel/plugin-syntax-jsx" "^7.18.6"
846-
"@babel/types" "^7.18.10"
846+
"@babel/types" "^7.19.0"
847847

848848
"@babel/plugin-transform-react-pure-annotations@^7.18.6":
849849
version "7.18.6"
@@ -1119,30 +1119,41 @@
11191119
"@babel/helper-validator-identifier" "^7.18.6"
11201120
to-fast-properties "^2.0.0"
11211121

1122+
"@babel/types@^7.19.0":
1123+
version "7.19.0"
1124+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.19.0.tgz#75f21d73d73dc0351f3368d28db73465f4814600"
1125+
integrity sha512-YuGopBq3ke25BVSiS6fgF49Ul9gH1x70Bcr6bqRLjWCkcX8Hre1/5+z+IiWOIerRMSSEfGZVB9z9kyq7wVs9YA==
1126+
dependencies:
1127+
"@babel/helper-string-parser" "^7.18.10"
1128+
"@babel/helper-validator-identifier" "^7.18.6"
1129+
to-fast-properties "^2.0.0"
1130+
11221131
"@bcoe/v8-coverage@^0.2.3":
11231132
version "0.2.3"
11241133
resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39"
11251134
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==
11261135

1127-
"@callstack/eslint-config@^12.0.2":
1128-
version "12.0.2"
1129-
resolved "https://registry.yarnpkg.com/@callstack/eslint-config/-/eslint-config-12.0.2.tgz#1462dd8c1514b080f195c0aa69aceb32b689e8cb"
1130-
integrity sha512-mmThceJgkIZDzeziDvI53vweOMdHN9XtMPvrMWk0w39obT/HeY7ehvgRpkLVf0UfpKaexn9dGnNvmwj/XiuauQ==
1136+
"@callstack/eslint-config@^13.0.1":
1137+
version "13.0.1"
1138+
resolved "https://registry.yarnpkg.com/@callstack/eslint-config/-/eslint-config-13.0.1.tgz#746950c5f1c9513f5e3ac6c431f15fea93abcef0"
1139+
integrity sha512-EXgh+EV0HibSjjn3Om3ObM6qMRQhwRKQm/LGtWHA2G9i/Du99bw+8X8OAml1gDV+jS0cRh/pgzuphCDAJae0Pw==
11311140
dependencies:
11321141
"@babel/core" "^7.16.0"
11331142
"@babel/eslint-parser" "^7.16.3"
1134-
"@typescript-eslint/eslint-plugin" "^5.4.0"
1135-
"@typescript-eslint/parser" "^5.4.0"
1143+
"@babel/plugin-syntax-flow" "^7.18.6"
1144+
"@babel/plugin-transform-react-jsx" "^7.18.10"
1145+
"@typescript-eslint/eslint-plugin" "^5.36.2"
1146+
"@typescript-eslint/parser" "^5.36.2"
11361147
eslint-config-prettier "^8.3.0"
1137-
eslint-plugin-flowtype "^7.0.0"
1148+
eslint-plugin-flowtype "^8.0.3"
11381149
eslint-plugin-import "^2.25.3"
1139-
eslint-plugin-jest "^25.3.0"
1150+
eslint-plugin-jest "^27.0.1"
11401151
eslint-plugin-prettier "^4.0.0"
1141-
eslint-plugin-promise "^5.1.1"
1152+
eslint-plugin-promise "^6.0.1"
11421153
eslint-plugin-react "^7.27.1"
11431154
eslint-plugin-react-hooks "^4.3.0"
1144-
eslint-plugin-react-native "^3.11.0"
1145-
eslint-plugin-react-native-a11y "^3.0.0"
1155+
eslint-plugin-react-native "^4.0.0"
1156+
eslint-plugin-react-native-a11y "^3.2.1"
11461157
eslint-restricted-globals "^0.2.0"
11471158
prettier "^2.4.1"
11481159

@@ -1904,91 +1915,85 @@
19041915
dependencies:
19051916
"@types/yargs-parser" "*"
19061917

1907-
"@typescript-eslint/eslint-plugin@^5.4.0":
1908-
version "5.32.0"
1909-
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.32.0.tgz#e27e38cffa4a61226327c874a7be965e9a861624"
1910-
integrity sha512-CHLuz5Uz7bHP2WgVlvoZGhf0BvFakBJKAD/43Ty0emn4wXWv5k01ND0C0fHcl/Im8Td2y/7h44E9pca9qAu2ew==
1918+
"@typescript-eslint/eslint-plugin@^5.36.2":
1919+
version "5.36.2"
1920+
resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.36.2.tgz#6df092a20e0f9ec748b27f293a12cb39d0c1fe4d"
1921+
integrity sha512-OwwR8LRwSnI98tdc2z7mJYgY60gf7I9ZfGjN5EjCwwns9bdTuQfAXcsjSB2wSQ/TVNYSGKf4kzVXbNGaZvwiXw==
19111922
dependencies:
1912-
"@typescript-eslint/scope-manager" "5.32.0"
1913-
"@typescript-eslint/type-utils" "5.32.0"
1914-
"@typescript-eslint/utils" "5.32.0"
1923+
"@typescript-eslint/scope-manager" "5.36.2"
1924+
"@typescript-eslint/type-utils" "5.36.2"
1925+
"@typescript-eslint/utils" "5.36.2"
19151926
debug "^4.3.4"
19161927
functional-red-black-tree "^1.0.1"
19171928
ignore "^5.2.0"
19181929
regexpp "^3.2.0"
19191930
semver "^7.3.7"
19201931
tsutils "^3.21.0"
19211932

1922-
"@typescript-eslint/experimental-utils@^5.0.0":
1923-
version "5.32.0"
1924-
resolved "https://registry.yarnpkg.com/@typescript-eslint/experimental-utils/-/experimental-utils-5.32.0.tgz#e3e664e7e00be2a3fb1a53c49b51b66c20fdd906"
1925-
integrity sha512-/x72MkqLAoOQSOHFxdm17irJ1PNDWtdrMmfacaYniGT26nibak8vxEf9xmoVE+yTYL8N77I2icPtw89Yx6HvNg==
1926-
dependencies:
1927-
"@typescript-eslint/utils" "5.32.0"
1928-
1929-
"@typescript-eslint/parser@^5.4.0":
1930-
version "5.32.0"
1931-
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.32.0.tgz#1de243443bc6186fb153b9e395b842e46877ca5d"
1932-
integrity sha512-IxRtsehdGV9GFQ35IGm5oKKR2OGcazUoiNBxhRV160iF9FoyuXxjY+rIqs1gfnd+4eL98OjeGnMpE7RF/NBb3A==
1933+
"@typescript-eslint/parser@^5.36.2":
1934+
version "5.36.2"
1935+
resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-5.36.2.tgz#3ddf323d3ac85a25295a55fcb9c7a49ab4680ddd"
1936+
integrity sha512-qS/Kb0yzy8sR0idFspI9Z6+t7mqk/oRjnAYfewG+VN73opAUvmYL3oPIMmgOX6CnQS6gmVIXGshlb5RY/R22pA==
19331937
dependencies:
1934-
"@typescript-eslint/scope-manager" "5.32.0"
1935-
"@typescript-eslint/types" "5.32.0"
1936-
"@typescript-eslint/typescript-estree" "5.32.0"
1938+
"@typescript-eslint/scope-manager" "5.36.2"
1939+
"@typescript-eslint/types" "5.36.2"
1940+
"@typescript-eslint/typescript-estree" "5.36.2"
19371941
debug "^4.3.4"
19381942

1939-
"@typescript-eslint/scope-manager@5.32.0":
1940-
version "5.32.0"
1941-
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.32.0.tgz#763386e963a8def470580cc36cf9228864190b95"
1942-
integrity sha512-KyAE+tUON0D7tNz92p1uetRqVJiiAkeluvwvZOqBmW9z2XApmk5WSMV9FrzOroAcVxJZB3GfUwVKr98Dr/OjOg==
1943+
"@typescript-eslint/scope-manager@5.36.2":
1944+
version "5.36.2"
1945+
resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-5.36.2.tgz#a75eb588a3879ae659514780831370642505d1cd"
1946+
integrity sha512-cNNP51L8SkIFSfce8B1NSUBTJTu2Ts4nWeWbFrdaqjmn9yKrAaJUBHkyTZc0cL06OFHpb+JZq5AUHROS398Orw==
19431947
dependencies:
1944-
"@typescript-eslint/types" "5.32.0"
1945-
"@typescript-eslint/visitor-keys" "5.32.0"
1948+
"@typescript-eslint/types" "5.36.2"
1949+
"@typescript-eslint/visitor-keys" "5.36.2"
19461950

1947-
"@typescript-eslint/type-utils@5.32.0":
1948-
version "5.32.0"
1949-
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.32.0.tgz#45a14506fe3fb908600b4cef2f70778f7b5cdc79"
1950-
integrity sha512-0gSsIhFDduBz3QcHJIp3qRCvVYbqzHg8D6bHFsDMrm0rURYDj+skBK2zmYebdCp+4nrd9VWd13egvhYFJj/wZg==
1951+
"@typescript-eslint/type-utils@5.36.2":
1952+
version "5.36.2"
1953+
resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-5.36.2.tgz#752373f4babf05e993adf2cd543a763632826391"
1954+
integrity sha512-rPQtS5rfijUWLouhy6UmyNquKDPhQjKsaKH0WnY6hl/07lasj8gPaH2UD8xWkePn6SC+jW2i9c2DZVDnL+Dokw==
19511955
dependencies:
1952-
"@typescript-eslint/utils" "5.32.0"
1956+
"@typescript-eslint/typescript-estree" "5.36.2"
1957+
"@typescript-eslint/utils" "5.36.2"
19531958
debug "^4.3.4"
19541959
tsutils "^3.21.0"
19551960

1956-
"@typescript-eslint/types@5.32.0":
1957-
version "5.32.0"
1958-
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.32.0.tgz#484273021eeeae87ddb288f39586ef5efeb6dcd8"
1959-
integrity sha512-EBUKs68DOcT/EjGfzywp+f8wG9Zw6gj6BjWu7KV/IYllqKJFPlZlLSYw/PTvVyiRw50t6wVbgv4p9uE2h6sZrQ==
1961+
"@typescript-eslint/types@5.36.2":
1962+
version "5.36.2"
1963+
resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-5.36.2.tgz#a5066e500ebcfcee36694186ccc57b955c05faf9"
1964+
integrity sha512-9OJSvvwuF1L5eS2EQgFUbECb99F0mwq501w0H0EkYULkhFa19Qq7WFbycdw1PexAc929asupbZcgjVIe6OK/XQ==
19601965

1961-
"@typescript-eslint/typescript-estree@5.32.0":
1962-
version "5.32.0"
1963-
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.32.0.tgz#282943f34babf07a4afa7b0ff347a8e7b6030d12"
1964-
integrity sha512-ZVAUkvPk3ITGtCLU5J4atCw9RTxK+SRc6hXqLtllC2sGSeMFWN+YwbiJR9CFrSFJ3w4SJfcWtDwNb/DmUIHdhg==
1966+
"@typescript-eslint/typescript-estree@5.36.2":
1967+
version "5.36.2"
1968+
resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-5.36.2.tgz#0c93418b36c53ba0bc34c61fe9405c4d1d8fe560"
1969+
integrity sha512-8fyH+RfbKc0mTspfuEjlfqA4YywcwQK2Amcf6TDOwaRLg7Vwdu4bZzyvBZp4bjt1RRjQ5MDnOZahxMrt2l5v9w==
19651970
dependencies:
1966-
"@typescript-eslint/types" "5.32.0"
1967-
"@typescript-eslint/visitor-keys" "5.32.0"
1971+
"@typescript-eslint/types" "5.36.2"
1972+
"@typescript-eslint/visitor-keys" "5.36.2"
19681973
debug "^4.3.4"
19691974
globby "^11.1.0"
19701975
is-glob "^4.0.3"
19711976
semver "^7.3.7"
19721977
tsutils "^3.21.0"
19731978

1974-
"@typescript-eslint/utils@5.32.0":
1975-
version "5.32.0"
1976-
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.32.0.tgz#eccb6b672b94516f1afc6508d05173c45924840c"
1977-
integrity sha512-W7lYIAI5Zlc5K082dGR27Fczjb3Q57ECcXefKU/f0ajM5ToM0P+N9NmJWip8GmGu/g6QISNT+K6KYB+iSHjXCQ==
1979+
"@typescript-eslint/utils@5.36.2", "@typescript-eslint/utils@^5.10.0":
1980+
version "5.36.2"
1981+
resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-5.36.2.tgz#b01a76f0ab244404c7aefc340c5015d5ce6da74c"
1982+
integrity sha512-uNcopWonEITX96v9pefk9DC1bWMdkweeSsewJ6GeC7L6j2t0SJywisgkr9wUTtXk90fi2Eljj90HSHm3OGdGRg==
19781983
dependencies:
19791984
"@types/json-schema" "^7.0.9"
1980-
"@typescript-eslint/scope-manager" "5.32.0"
1981-
"@typescript-eslint/types" "5.32.0"
1982-
"@typescript-eslint/typescript-estree" "5.32.0"
1985+
"@typescript-eslint/scope-manager" "5.36.2"
1986+
"@typescript-eslint/types" "5.36.2"
1987+
"@typescript-eslint/typescript-estree" "5.36.2"
19831988
eslint-scope "^5.1.1"
19841989
eslint-utils "^3.0.0"
19851990

1986-
"@typescript-eslint/visitor-keys@5.32.0":
1987-
version "5.32.0"
1988-
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.32.0.tgz#b9715d0b11fdb5dd10fd0c42ff13987470525394"
1989-
integrity sha512-S54xOHZgfThiZ38/ZGTgB2rqx51CMJ5MCfVT2IplK4Q7hgzGfe0nLzLCcenDnc/cSjP568hdeKfeDcBgqNHD/g==
1991+
"@typescript-eslint/visitor-keys@5.36.2":
1992+
version "5.36.2"
1993+
resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-5.36.2.tgz#2f8f78da0a3bad3320d2ac24965791ac39dace5a"
1994+
integrity sha512-BtRvSR6dEdrNt7Net2/XDjbYKU5Ml6GqJgVfXT0CxTCJlnIqK7rAGreuWKMT2t8cFUT2Msv5oxw0GMRD7T5J7A==
19901995
dependencies:
1991-
"@typescript-eslint/types" "5.32.0"
1996+
"@typescript-eslint/types" "5.36.2"
19921997
eslint-visitor-keys "^3.3.0"
19931998

19941999
JSONStream@^1.0.4:
@@ -3488,10 +3493,10 @@ eslint-module-utils@^2.7.3:
34883493
debug "^3.2.7"
34893494
find-up "^2.1.0"
34903495

3491-
eslint-plugin-flowtype@^7.0.0:
3492-
version "7.0.0"
3493-
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-7.0.0.tgz#da07684b5f0caf7c42ed013c2d0c04dbaf2960f4"
3494-
integrity sha512-kW3eipG2Vth6e0apYqmFs05IHhFklJJNokYNiNEO5AIjm7H29oTDybYNB2bMULUYcf7iX7Wf3GdRhfBORKcT1g==
3496+
eslint-plugin-flowtype@^8.0.3:
3497+
version "8.0.3"
3498+
resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-8.0.3.tgz#e1557e37118f24734aa3122e7536a038d34a4912"
3499+
integrity sha512-dX8l6qUL6O+fYPtpNRideCFSpmWOUVx5QcaGLVqe/vlDiBSe4vYljDWDETwnyFzpl7By/WVIu6rcrniCgH9BqQ==
34953500
dependencies:
34963501
lodash "^4.17.21"
34973502
string-natural-compare "^3.0.1"
@@ -3515,12 +3520,12 @@ eslint-plugin-import@^2.25.3:
35153520
resolve "^1.22.0"
35163521
tsconfig-paths "^3.14.1"
35173522

3518-
eslint-plugin-jest@^25.3.0:
3519-
version "25.7.0"
3520-
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz#ff4ac97520b53a96187bad9c9814e7d00de09a6a"
3521-
integrity sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==
3523+
eslint-plugin-jest@^27.0.1:
3524+
version "27.0.2"
3525+
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-27.0.2.tgz#c57e13793fe0e06727a7818ba390844a0abe48c9"
3526+
integrity sha512-VEZaj19IMxqg/URcHNT4PhfoJJ1EsFurgq0SjMEYprDCq+et9fKkE4jIHnAsFh3mHLPBgAq04YQqkeW3slXs+Q==
35223527
dependencies:
3523-
"@typescript-eslint/experimental-utils" "^5.0.0"
3528+
"@typescript-eslint/utils" "^5.10.0"
35243529

35253530
eslint-plugin-prettier@^4.0.0:
35263531
version "4.2.1"
@@ -3529,17 +3534,17 @@ eslint-plugin-prettier@^4.0.0:
35293534
dependencies:
35303535
prettier-linter-helpers "^1.0.0"
35313536

3532-
eslint-plugin-promise@^5.1.1:
3533-
version "5.2.0"
3534-
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-5.2.0.tgz#a596acc32981627eb36d9d75f9666ac1a4564971"
3535-
integrity sha512-SftLb1pUG01QYq2A/hGAWfDRXqYD82zE7j7TopDOyNdU+7SvvoXREls/+PRTY17vUXzXnZA/zfnyKgRH6x4JJw==
3537+
eslint-plugin-promise@^6.0.1:
3538+
version "6.0.1"
3539+
resolved "https://registry.yarnpkg.com/eslint-plugin-promise/-/eslint-plugin-promise-6.0.1.tgz#a8cddf96a67c4059bdabf4d724a29572188ae423"
3540+
integrity sha512-uM4Tgo5u3UWQiroOyDEsYcVMOo7re3zmno0IZmB5auxoaQNIceAbXEkSt8RNrKtaYehARHG06pYK6K1JhtP0Zw==
35363541

35373542
eslint-plugin-react-hooks@^4.3.0:
35383543
version "4.6.0"
35393544
resolved "https://registry.yarnpkg.com/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz#4c3e697ad95b77e93f8646aaa1630c1ba607edd3"
35403545
integrity sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==
35413546

3542-
eslint-plugin-react-native-a11y@^3.0.0:
3547+
eslint-plugin-react-native-a11y@^3.2.1:
35433548
version "3.2.1"
35443549
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-a11y/-/eslint-plugin-react-native-a11y-3.2.1.tgz#6c3296f7c689ab2f8f89ad5bf6c0c8dafe029193"
35453550
integrity sha512-DNOCp2uKvW0I86CoEAOEljq7qe4MiZLlToSPiwu0X+Bgst0+d30sERvhIu5kyzY7XM3HD2xoJma7FW5XYGxRBA==
@@ -3553,10 +3558,10 @@ eslint-plugin-react-native-globals@^0.1.1:
35533558
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native-globals/-/eslint-plugin-react-native-globals-0.1.2.tgz#ee1348bc2ceb912303ce6bdbd22e2f045ea86ea2"
35543559
integrity sha512-9aEPf1JEpiTjcFAmmyw8eiIXmcNZOqaZyHO77wgm0/dWfT/oxC1SrIq8ET38pMxHYrcB6Uew+TzUVsBeczF88g==
35553560

3556-
eslint-plugin-react-native@^3.11.0:
3557-
version "3.11.0"
3558-
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-3.11.0.tgz#c73b0886abb397867e5e6689d3a6a418682e6bac"
3559-
integrity sha512-7F3OTwrtQPfPFd+VygqKA2VZ0f2fz0M4gJmry/TRE18JBb94/OtMxwbL7Oqwu7FGyrdeIOWnXQbBAveMcSTZIA==
3561+
eslint-plugin-react-native@^4.0.0:
3562+
version "4.0.0"
3563+
resolved "https://registry.yarnpkg.com/eslint-plugin-react-native/-/eslint-plugin-react-native-4.0.0.tgz#eec41984abe4970bdd7c6082dff7a98a5e34d0bb"
3564+
integrity sha512-kMmdxrSY7A1WgdqaGC+rY/28rh7kBGNBRsk48ovqkQmdg5j4K+DaFmegENDzMrdLkoufKGRNkKX6bgSwQTCAxQ==
35603565
dependencies:
35613566
"@babel/traverse" "^7.7.4"
35623567
eslint-plugin-react-native-globals "^0.1.1"

0 commit comments

Comments
 (0)