-
-
Notifications
You must be signed in to change notification settings - Fork 2.8k
Comparing changes
Open a pull request
base repository: typescript-eslint/typescript-eslint
base: v5.30.7
head repository: typescript-eslint/typescript-eslint
compare: v5.31.0
- 15 commits
- 205 files changed
- 10 contributors
Commits on Jul 18, 2022
-
chore: Bump rollup from 2.75.7 to 2.77.0 (#5348)
Bumps [rollup](https://github.com/rollup/rollup) from 2.75.7 to 2.77.0. - [Release notes](https://github.com/rollup/rollup/releases) - [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md) - [Commits](rollup/rollup@v2.75.7...v2.77.0) --- updated-dependencies: - dependency-name: rollup 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>
Configuration menu - View commit details
-
Copy full SHA for 0af4f86 - Browse repository at this point
Copy the full SHA 0af4f86View commit details -
chore: Bump eslint-plugin-jest from 26.5.3 to 26.6.0 (#5349)
Bumps [eslint-plugin-jest](https://github.com/jest-community/eslint-plugin-jest) from 26.5.3 to 26.6.0. - [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.5.3...v26.6.0) --- updated-dependencies: - dependency-name: eslint-plugin-jest 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>
Configuration menu - View commit details
-
Copy full SHA for d3c318c - Browse repository at this point
Copy the full SHA d3c318cView commit details -
chore: Bump @swc/jest from 0.2.21 to 0.2.22 (#5351)
Bumps [@swc/jest](https://github.com/swc-project/jest) from 0.2.21 to 0.2.22. - [Release notes](https://github.com/swc-project/jest/releases) - [Commits](swc-project/jest@v0.2.21...v0.2.22) --- updated-dependencies: - dependency-name: "@swc/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>
Configuration menu - View commit details
-
Copy full SHA for 3d55289 - Browse repository at this point
Copy the full SHA 3d55289View commit details
Commits on Jul 22, 2022
-
chore: Bump terser from 5.14.0 to 5.14.2 (#5358)
Bumps [terser](https://github.com/terser/terser) from 5.14.0 to 5.14.2. - [Release notes](https://github.com/terser/terser/releases) - [Changelog](https://github.com/terser/terser/blob/master/CHANGELOG.md) - [Commits](https://github.com/terser/terser/commits) --- updated-dependencies: - dependency-name: terser dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 29b7c02 - Browse repository at this point
Copy the full SHA 29b7c02View commit details -
feat(eslint-plugin): [consistent-generic-ctors] check class field dec…
…laration (#5288) * feat(eslint-plugin): [consistent-generic-ctors] report class field declaration * add a test Co-authored-by: Josh Goldberg <me@joshuakgoldberg.com>
Configuration menu - View commit details
-
Copy full SHA for 48f996e - Browse repository at this point
Copy the full SHA 48f996eView commit details -
fix(eslint-plugin): [typedef] Support nested array destructuring with…
… type annotation (#5311)
Configuration menu - View commit details
-
Copy full SHA for 6d19efe - Browse repository at this point
Copy the full SHA 6d19efeView commit details -
chore(website): streamlined Getting Started docs (#5248)
* chore(website): streamlined Getting Started docs * Fix: check-spelling; lint-markdown * Fixed remaining typed-linting issues * Apply suggestions from code review Co-authored-by: Brad Zacher <brad.zacher@gmail.com> * TSLINT_RULE_ALTERNATIVES.md * Code case * Remove prettier-ignore Co-authored-by: Brad Zacher <brad.zacher@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 7ea14ae - Browse repository at this point
Copy the full SHA 7ea14aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for a0d5a70 - Browse repository at this point
Copy the full SHA a0d5a70View commit details -
Configuration menu - View commit details
-
Copy full SHA for 2595ccf - Browse repository at this point
Copy the full SHA 2595ccfView commit details -
Configuration menu - View commit details
-
Copy full SHA for 8c1a662 - Browse repository at this point
Copy the full SHA 8c1a662View commit details -
chore(website): add formatting (Prettier) page (#5363)
* chore(website): streamlined Getting Started docs * Fix: check-spelling; lint-markdown * Fixed remaining typed-linting issues * chore: add formatting (Prettier) page to the website * nit: first wording * Update docs/linting/troubleshooting/FORMATTING.md * Add dprint to cspell dictionary
Configuration menu - View commit details
-
Copy full SHA for 2588e9e - Browse repository at this point
Copy the full SHA 2588e9eView commit details
Commits on Jul 23, 2022
-
chore(website): multiple fixes to rule docs generation (#5365)
* chore(website): multiple fixes to rule docs generation * add trailing period
Configuration menu - View commit details
-
Copy full SHA for 78823cc - Browse repository at this point
Copy the full SHA 78823ccView commit details -
feat(eslint-plugin): [prefer-nullish-coalescing] add ignoreTernaryTes…
…ts option (#4965) * feat(eslint-plugin): added ignoreTernaryTests option to prefer-nullish-coalescing rule * feat(eslint-plugin): added checking of loose equal ternary cases for prefer-nullish-coalescing rule * feat(eslint-plugin): fixed typo in docs for prefer-nullish-coalescing rule * feat(eslint-plugin): added more test cases for prefer-nullish-coalescing rule * feat(eslint-plugin): added support for MemberExpressions for ignoreTernaryTests option * refactor(eslint-plugin): cleanup prefer-nullish-coalescing rule * test(eslint-plugin): added missing test case for prefer-nullish-coalescing rule * chore: removed currently not supported comment Co-authored-by: Josh Goldberg <me@joshuakgoldberg.com> * refactor: simplified return statement Co-authored-by: Josh Goldberg <me@joshuakgoldberg.com> * refactor: renamed utilities * refactor: used new utilities in prefer-optional-chain.ts * refactor: simplified prefer-nullish-coalescing.ts * test: added test case for prefer-nullish-coalescing * refactor: renamed message id to preferNullishOverOr * fix: covered edge case where we have two loose comparisons * refactor: removed useless .trim * chore: fixed typo * test: added more test cases * fix: fixed tests * chore: fixed typo * test: added more test cases * refactor: inlined getOperator and getNodes * perf: skip type check if both null and undefined are not checked * Apply suggestions from code review Co-authored-by: Josh Goldberg <me@joshuakgoldberg.com>
Configuration menu - View commit details
-
Copy full SHA for f82727f - Browse repository at this point
Copy the full SHA f82727fView commit details
Commits on Jul 25, 2022
-
docs: remove extra paren in readme (#5375)
remove extra paren in readme
Configuration menu - View commit details
-
Copy full SHA for 78f3c48 - Browse repository at this point
Copy the full SHA 78f3c48View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3983d84 - Browse repository at this point
Copy the full SHA 3983d84View commit details
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.30.7...v5.31.0