8000 Comparing v7.8.0...v7.9.0 · typescript-eslint/typescript-eslint · GitHub
[go: up one dir, main page]

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: v7.8.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: v7.9.0
Choose a head ref
  • 16 commits
  • 77 files changed
  • 14 contributors

Commits on Apr 29, 2024

  1. docs: fix no-unnecessary-boolean-literal-compare example (#8981)

    * docs: fix no-unnecessary-boolean-literal-compare example
    
    * docs: use simpler expressions on no-unnecessary-boolean-literal-compare examples
    heitorlisboa authored Apr 29, 2024
    Configuration menu
    Copy the full SHA
    6e1241b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    7984ef7 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2024

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

Commits on May 3, 2024

  1. chore: update sponsors (#9040)

    Co-authored-by: typescript-eslint[bot] <typescript-eslint[bot]@users.noreply.github.com>
    Configuration menu
    Copy the full SHA
    225fd34 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    f248e68 View commit details
    Browse the repository at this point in the history

Commits on May 6, 2024

  1. docs: correct its/it's spelling (#9048)

    spelling fix
    kirkwaiblinger authored May 6, 2024
    Configuration menu
    Copy the full SHA
    ab92621 View commit details
    Browse the repository at this point in the history
  2. fix: do not pass tsconfig canonical file name to typescript API to ge…

    …t program details for config file (#9042)
    sheetalkamat authored May 6, 2024
    Configuration menu
    Copy the full SHA
    d166fdd View commit details
    Browse the repository at this point in the history

Commits on May 8, 2024

  1. docs: fix broken link to import/no-duplicates on `no-duplicate-impo…

    …rts` page (#9063)
    
    Update no-duplicate-imports.mdx
    
    Fix broken link
    jordanoverbye authored May 8, 2024
    Configuration menu
    Copy the full SHA
    37a41d9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    d696ea2 View commit details
    Browse the repository at this point in the history
  3. docs: correct the usage of eslint-recommended (#9014)

    Co-authored-by: auvred <61150013+auvred@users.noreply.github.com>
    honeymaro and auvred authored May 8, 2024
    Configuration menu
    Copy the full SHA
    af47bc9 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. feat(rule-tester): check for missing placeholder data in the message (#…

    …9039)
    
    Enhancement(rule-tester): check for missing placeholder data in the message
    Vinccool96 authored May 9, 2024
    Configuration menu
    Copy the full SHA
    5110248 View commit details
    Browse the repository at this point in the history

Commits on May 11, 2024

  1. docs: add docs for using rule tester with node:test (#9049)

    * docs: add docs for using rule tester with node:test
    
    Fixes #8273
    
    * Update docs/packages/Rule_Tester.mdx
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    
    ---------
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    Co-authored-by: auvred <61150013+auvred@users.noreply.github.com>
    3 people authored May 11, 2024
    Configuration menu
    Copy the full SHA
    3f766b7 View commit details
    Browse the repository at this point in the history
  2. docs: fix broken anchor links (#9077)

    remove unclosed parens in linkToConfigs function
    peanutenthusiast authored May 11, 2024
    Configuration menu
    Copy the full SHA
    7ce6acd View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. fix(eslint-plugin): [explicit-function-return-types] fix false positi…

    …ve on default parameters (#9045)
    
    [explicit-function-return-types] default parameters where a type annotation is present should count as typed function expressions
    
    fix #8950
    
    Co-authored-by: auvred <61150013+auvred@users.noreply.github.com>
    kirkwaiblinger and auvred authored May 13, 2024
    Configuration menu
    Copy the full SHA
    8acb8d4 View commit details
    Browse the repository at this point in the history
  2. chore: add knip (#8192)

    * chore: add knip
    
    * chore: sync lockfile
    
    * chore: bump knip
    
    * ci: run knip in ci workflow
    
    * ci: run knip as part of lint job
    
    * refactor: replace `testRegex` with `testMatch`
    
    * refactor: use satisfies in knip config
    
    * chore: fix path to rule-tester fixtures
    
    * chore: add dummypkg as knip workspace
    
    * chore: get rid of  json-schema
    
    * chore: fix knip issues in packages/website
    
    * chore: sync lockfile
    
    * chore: add missed merge stuff
    
    * chore: install @jest/types in the root workspace
    
    * chore: partially fix issues for website-eslint
    
    * chore: fix knip issues for packages/website-eslint
    
    * chore: add ncp resolution to the root package.json
    
    * chore: wip wip wip
    
    * chore: fix misspelling + handle few knip issues
    
    * chore: finally (?)
    
    * chore: expand ignoreDependencies regular expressions
    
    * chore: revert unrelated changes
    
    * chore: try to minimise docusaurus-related changes
    
    * chore: remove extra entry
    
    * chore: bump knip to 4.0.2
    
    * wip
    
    * add types to jest config
    
    * yarn lint --fix
    
    * add knip to ci
    
    * !!!
    
    * Revert "!!!"
    
    This reverts commit 36fa481.
    
    * revert yarn dedupe
    
    * sed -i 's| -p tsconfig.json||g'
    
    * update todo comment in eslint.config.js
    
    * Update knip.ts
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    
    * oops
    
    ---------
    
    Co-authored-by: Josh Goldberg ✨ <git@joshuakgoldberg.com>
    auvred and JoshuaKGoldberg authored May 13, 2024
    Configuration menu
    Copy the full SHA
    f53fece View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    77fc366 View commit details
    Browse the repository at this point in the history
Loading
0