Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork2.8k
Comparing changes
Open a pull request
base repository:typescript-eslint/typescript-eslint
Uh oh!
There was an error while loading.Please reload this page.
base:v5.20.0
head repository:typescript-eslint/typescript-eslint
Uh oh!
There was an error while loading.Please reload this page.
compare:v5.21.0
- 18commits
- 52files changed
- 8contributors
Commits on Apr 18, 2022
chore: Bump @swc/core from 1.2.165 to 1.2.168 (#4835)
Bumps [@swc/core](https://github.com/swc-project/swc) from 1.2.165 to 1.2.168.- [Release notes](https://github.com/swc-project/swc/releases)- [Changelog](https://github.com/swc-project/swc/blob/main/CHANGELOG.md)- [Commits](swc-project/swc@v1.2.165...v1.2.168)---updated-dependencies:- dependency-name: "@swc/core" dependency-type: direct:development update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 18, 2022 chore: Bump @rollup/pluginutils from 4.2.0 to 4.2.1 (#4836)
Bumps [@rollup/pluginutils](https://github.com/rollup/plugins/tree/HEAD/packages/pluginutils) from 4.2.0 to 4.2.1.- [Release notes](https://github.com/rollup/plugins/releases)- [Changelog](https://github.com/rollup/plugins/blob/master/packages/pluginutils/CHANGELOG.md)- [Commits](https://github.com/rollup/plugins/commits/pluginutils-v4.2.1/packages/pluginutils)---updated-dependencies:- dependency-name: "@rollup/pluginutils" dependency-type: direct:development update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 18, 2022 chore: Bump @rollup/plugin-commonjs from 21.0.3 to 21.1.0 (#4837)
Bumps [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) from 21.0.3 to 21.1.0.- [Release notes](https://github.com/rollup/plugins/releases)- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)- [Commits](https://github.com/rollup/plugins/commits/commonjs-v21.1.0/packages/commonjs)---updated-dependencies:- dependency-name: "@rollup/plugin-commonjs" dependency-type: direct:development update-type: version-update:semver-minor...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 18, 2022 chore: Bump rollup from 2.70.1 to 2.70.2 (#4834)
Bumps [rollup](https://github.com/rollup/rollup) from 2.70.1 to 2.70.2.- [Release notes](https://github.com/rollup/rollup/releases)- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)- [Commits](rollup/rollup@v2.70.1...v2.70.2)---updated-dependencies:- dependency-name: rollup dependency-type: direct:development update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 18, 2022 chore: Bump semver from 7.3.5 to 7.3.7 (#4838)
Bumps [semver](https://github.com/npm/node-semver) from 7.3.5 to 7.3.7.- [Release notes](https://github.com/npm/node-semver/releases)- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)- [Commits](npm/node-semver@v7.3.5...v7.3.7)---updated-dependencies:- dependency-name: semver dependency-type: direct:production update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 18, 2022
Commits on Apr 19, 2022
chore(website): upgrade docusaurus (#4692)
* chore(website): upgrade docusaurus, fix dark mode palette* test(website): revert CSS; SHOULD BE REAPPLIED BEFORE MERGE* revert again* fix: lock* revert some lock changes* chore: caniuse db update* refactor: decrease specificity of both* revert CSS changes* test: update cypress selector* chore: upgrade caniuse dbCo-authored-by: Josh Goldberg <me@joshuakgoldberg.com>
Commits on Apr 22, 2022
feat(eslint-plugin): [parameter-properties] add rule to replace `no-p…
…arameter-properties` (#4622)
JoshuaKGoldberg authoredApr 22, 2022 fix(eslint-plugin): [no-namespace] fix false positive for exported na…
…mespaces when allowDeclarations=true (#4844)* Add failing test* Fix isDeclaration to look recursively* Add more tests
zachkirsch authoredApr 22, 2022 fix(eslint-plugin): [no-misused-promises] prioritize false returns wh…
…en checking whether a function returns only void (#4841)* fix(eslint-plugin): prioritize false returns when checking whether a function returns only void* Update packages/eslint-plugin/tests/rules/no-misused-promises.test.tsCo-authored-by: Brad Zacher <brad.zacher@gmail.com>Co-authored-by: Brad Zacher <brad.zacher@gmail.com>
Commits on Apr 23, 2022
docs: remove duplicate period in
method-signature-style
(#4849)ybiquitous authoredApr 23, 2022
Commits on Apr 24, 2022
fix(eslint-plugin): [space-infix-ops] fix no error when right type is…
… function (#4848)* fix(eslint-plugin): [space-infix-ops] no error when right typeis functionNo errors were thrown when the right type is a function when nospace between union or intersection operator. Function types arewrapped inside parenthesize. If the right type is function, instead ofgetting the operator, it was always getting the function parenthesize.The fix providedd skips wrapped parenthesize for function type, so thatoperator will be properly identified.* fix: edge case where function has multipleparenthesis
tapanprakasht authoredApr 24, 2022
Commits on Apr 25, 2022
chore: Bump @types/lodash from 4.14.181 to 4.14.182 (#4852)
Bumps [@types/lodash](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/lodash) from 4.14.181 to 4.14.182.- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/lodash)---updated-dependencies:- dependency-name: "@types/lodash" dependency-type: direct:development update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 25, 2022 chore: Bump lint-staged from 12.3.7 to 12.4.0 (#4855)
Bumps [lint-staged](https://github.com/okonet/lint-staged) from 12.3.7 to 12.4.0.- [Release notes](https://github.com/okonet/lint-staged/releases)- [Commits](lint-staged/lint-staged@v12.3.7...v12.4.0)---updated-dependencies:- dependency-name: lint-staged dependency-type: direct:development update-type: version-update:semver-minor...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 25, 2022 chore: Bump eslint-plugin-jest from 26.1.4 to 26.1.5 (#4856)
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 26.1.4 to 26.1.5.- [Release notes](https://github.com/jest-community/eslint-plugin-jest/releases)- [Changelog](https://github.com/jest-community/eslint-plugin-jest/blob/main/CHANGELOG.md)- [Commits](jest-community/eslint-plugin-jest@v26.1.4...v26.1.5)---updated-dependencies:- dependency-name: eslint-plugin-jest dependency-type: direct:development update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 25, 2022 chore: Bump @rollup/plugin-node-resolve from 13.2.0 to 13.2.1 (#4854)
Bumps [@rollup/plugin-node-resolve](https://github.com/rollup/plugins/tree/HEAD/packages/node-resolve) from 13.2.0 to 13.2.1.- [Release notes](https://github.com/rollup/plugins/releases)- [Changelog](https://github.com/rollup/plugins/blob/master/packages/node-resolve/CHANGELOG.md)- [Commits](https://github.com/rollup/plugins/commits/node-resolve-v13.2.1/packages/node-resolve)---updated-dependencies:- dependency-name: "@rollup/plugin-node-resolve" dependency-type: direct:development update-type: version-update:semver-patch...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 25, 2022 chore: Bump @rollup/plugin-commonjs from 21.1.0 to 22.0.0 (#4853)
Bumps [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/HEAD/packages/commonjs) from 21.1.0 to 22.0.0.- [Release notes](https://github.com/rollup/plugins/releases)- [Changelog](https://github.com/rollup/plugins/blob/master/packages/commonjs/CHANGELOG.md)- [Commits](https://github.com/rollup/plugins/commits/commonjs-v22.0.0/packages/commonjs)---updated-dependencies:- dependency-name: "@rollup/plugin-commonjs" dependency-type: direct:development update-type: version-update:semver-major...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 25, 2022 chore: Bump @microsoft/api-extractor from 7.21.2 to 7.23.0 (#4850)
Bumps [@microsoft/api-extractor](https://github.com/microsoft/rushstack/tree/HEAD/apps/api-extractor) from 7.21.2 to 7.23.0.- [Release notes](https://github.com/microsoft/rushstack/releases)- [Changelog](https://github.com/microsoft/rushstack/blob/main/apps/api-extractor/CHANGELOG.md)- [Commits](https://github.com/microsoft/rushstack/commits/@microsoft/api-extractor_v7.23.0/apps/api-extractor)---updated-dependencies:- dependency-name: "@microsoft/api-extractor" dependency-type: direct:development update-type: version-update:semver-minor...Signed-off-by: dependabot[bot] <support@github.com>Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
dependabot[bot] authoredApr 25, 2022 - JamesHenry committed
Apr 25, 2022
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:git diff v5.20.0...v5.21.0
Uh oh!
There was an error while loading.Please reload this page.