Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: typescript-eslint/typescript-eslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.6.0
Choose a base ref
...
head repository: typescript-eslint/typescript-eslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.7.0
Choose a head ref
  • 16 commits
  • 86 files changed
  • 12 contributors

Commits on Sep 18, 2024

  1. fix(utils): add missing entries to the RuleListener selectors list (#…

    …9992)
    
    * fix(utils): add missing entries to the RuleListener selectors list
    
    * fix knip err
    auvred authored Sep 18, 2024
    Configuration menu
    Copy the full SHA
    385bedb View commit details
    Browse the repository at this point in the history

Commits on Sep 19, 2024

  1. Configuration menu
    Copy the full SHA
    7865a55 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d6e0f6e View commit details
    Browse the repository at this point in the history
  3. fix(types): add NewExpression as a parent of SpreadElement (#10024)

    `new` expressions may contain a spread, e.g. `new Array(...[])`.
    eventualbuddha authored Sep 19, 2024
    Configuration menu
    Copy the full SHA
    c249c2f View commit details
    Browse the repository at this point in the history

Commits on Sep 20, 2024

  1. docs: misnamed no-deprecation/no-deprecated in CHANGELOG.md (#10021)

    Misnamed `no-deprecation`/`no-deprecated` in CHANGELOG.md
    
    Same in the release description for https://github.com/typescript-eslint/typescript-eslint/releases/tag/v8.3.0
    Samuel-Therrien-Beslogic authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    dc5b587 View commit details
    Browse the repository at this point in the history
  2. chore(deps): update dependency eslint-plugin-react to v7.36.1 (#10017)

    chore(deps): update dependency eslint-plugin-react to v7.36.0
    
    Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
    renovate[bot] authored Sep 20, 2024
    Configuration menu
    Copy the full SHA
    4b5cf6e View commit details
    Browse the repository at this point in the history

Commits on Sep 21, 2024

  1. docs: [strict-boolean-expressions] fix adominition (#10033)

    * docs: [strict-boolean-expressions] fix adominition
    
    * Update packages/eslint-plugin/docs/rules/strict-boolean-expressions.mdx
    
    ---------
    
    Co-authored-by: Joshua Chen <sidachen2003@gmail.com>
    kirkwaiblinger and Josh-Cena authored Sep 21, 2024
    Configuration menu
    Copy the full SHA
    7b149b9 View commit details
    Browse the repository at this point in the history

Commits on Sep 22, 2024

  1. Configuration menu
    Copy the full SHA
    1c183ab View commit details
    Browse the repository at this point in the history

Commits on Sep 23, 2024

  1. docs: [no-floating-promises] clarify that void does not resolve promi…

    …ses (#9949)
    
    * Improved no-floating-promises documentation
    
    * Changed silencing phrase
    
    * Moved rules report order to prioritize handling
    
    * Improved ignoreVoid warning
    
    * Removed handled/unhandled markers and added a bit on the next tip
    
    * Reverted tip edit
    
    * Added a paragraph about promises handling and improved the warning in ignoreVoid
    
    * Moved handling Promises paragraph up
    
    * Reworked a bit Handling Promises rejections
    
    * Removed Handling Promises rejection
    
    * Added link to mdn in the tip
    
    * Removed ref to handling promises rejection (not existing anymore)
    
    * Changed monospace comment in warning to link
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    
    * Typo fix
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    
    ---------
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    Co-authored-by: Kirk Waiblinger <kirk.waiblinger@gmail.com>
    3 people authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    c5dc755 View commit details
    Browse the repository at this point in the history
  2. fix(eslint-plugin): [no-deprecated] report on imported deprecated var…

    …iables (#9987)
    
    * fix(eslint-plugin): [no-deprecated] report on imported deprecated variables
    
    * i thought it would be a lot easier...
    
    * revert changes in class.ts fixture
    
    * explain why we don't check aliased symbol when working with signatures
    
    * ci failures
    
    * test: make tests pass with projectservice enabled
    auvred authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    b75d42b View commit details
    Browse the repository at this point in the history
  3. fix(eslint-plugin): [no-confusing-non-null-assertion] check !in and !…

    …instanceof (#9994)
    
    * ban !in and !instanceof
    
    * lintfix
    
    * snapshots
    
    * cov
    kirkwaiblinger authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    8293546 View commit details
    Browse the repository at this point in the history
  4. feat(eslint-plugin): [no-unsafe-call] check calls of Function (#10010)

    * [no-unsafe-call] check calls of Function
    
    * lint
    
    * weird edge cases
    
    * comment
    
    * naming
    
    * feedback
    kirkwaiblinger authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    e8555a0 View commit details
    Browse the repository at this point in the history
  5. docs: [no-unnecessary-type-parameters] add FAQ section (#9975)

    * [no-unnecessary-type-parameters] add FAQ section
    
    * wording
    
    * wording
    
    * update admonition link
    
    * test case
    
    * stuf
    
    * prettierer
    
    * test case formatting
    
    * log
    
    * mention 9735
    
    * explain the equal false positives a little better
    
    * add implicit return type FAQ
    kirkwaiblinger authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    dc1c6d3 View commit details
    Browse the repository at this point in the history
  6. feat(eslint-plugin): [consistent-type-exports] check export * expor…

    …ts to see if all exported members are types (#10006)
    
    * feat(eslint-plugin): [consistent-type-exports] check "export *" exports to see if all exported members are types
    
    * filter + length === some
    
    * lint --fix
    auvred authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    d0e35d9 View commit details
    Browse the repository at this point in the history
  7. docs(eslint-plugin): [no-inferrable-types] do not use no-inferrable-t…

    …ypes with isolatedDeclarations compiler option (#9956)
    
    docs: do not use no-inferrable-types with isolatedDeclarations compiler option
    YuyaYoshioka authored Sep 23, 2024
    Configuration menu
    Copy the full SHA
    cdd93f6 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    b88ea33 View commit details
    Browse the repository at this point in the history
Loading