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: eslint/eslint
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v8.24.0
Choose a base ref
...
head repository: eslint/eslint
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v8.25.0
Choose a head ref
  • 18 commits
  • 42 files changed
  • 11 contributors

Commits on Sep 24, 2022

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

Commits on Sep 27, 2022

  1. docs: Update docs README (#16352)

    Add more detailed setup information to the docs README.
    bpmutter authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    f6d57fb View commit details
    Browse the repository at this point in the history
  2. feat: id-length counts graphemes instead of code units (#16321)

    * fix: counts graphemes instead of code units
    
    * test: add more tests
    
    * test: add more valid tests
    
    * docs: mention about grapehemes
    
    * fix: first check if string is ASCII
    
    * fix: use regex
    
    * Update docs/src/rules/id-length.md
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    * fix: add `max: 1` to valid tests
    
    * fix: add tests for Variation Selectors
    
    * Update tests/lib/rules/id-length.js
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    * Update tests/lib/rules/id-length.js
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    
    Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
    sosukesuzuki and mdjermanovic authored Sep 27, 2022
    Configuration menu
    Copy the full SHA
    1cc4b3a View commit details
    Browse the repository at this point in the history

Commits on Sep 29, 2022

  1. docs: add BigInt to new-cap docs (#16362)

    Sosuke Suzuki authored Sep 29, 2022
    Configuration menu
    Copy the full SHA
    a682562 View commit details
    Browse the repository at this point in the history

Commits on Oct 2, 2022

  1. Configuration menu
    Copy the full SHA
    b3a0837 View commit details
    Browse the repository at this point in the history
  2. docs: typo cleanups for docs (#16374)

    * docs: typos in comments/JSDocs
    
    * fix: bad CSS position value rekative
    
    * fix: UK spelling of behavior for ScrollOption
    nschonni authored Oct 2, 2022
    Configuration menu
    Copy the full SHA
    3bd380d View commit details
    Browse the repository at this point in the history
  3. chore: bump actions/stale from 5 to 6 (#16350)

    Bumps [actions/stale](https://github.com/actions/stale) from 5 to 6.
    - [Release notes](https://github.com/actions/stale/releases)
    - [Changelog](https://github.com/actions/stale/blob/main/CHANGELOG.md)
    - [Commits](actions/stale@v5...v6)
    
    ---
    updated-dependencies:
    - dependency-name: actions/stale
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    
    Signed-off-by: dependabot[bot] <support@github.com>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Oct 2, 2022
    Configuration menu
    Copy the full SHA
    42f5479 View commit details
    Browse the repository at this point in the history

Commits on Oct 3, 2022

  1. Configuration menu
    Copy the full SHA
    49bd1e5 View commit details
    Browse the repository at this point in the history
  2. feat: remove support for ignore files in FlatESLint (#16355)

    * do not use `gitignoreToMinimatch` on `--ignore-pattern`
    
    * remove .eslintignore lookup
    
    * remove flat-eslint tests that assume .eslintignore lookup
    
    * remove --ignore-path CLI option
    
    * remove ignorePath contructor option
    
    * update docs and jsdoc
    
    * do not use gitIgnoreToMinimatch on ignorePatterns constructor option
    mdjermanovic authored Oct 3, 2022
    Configuration menu
    Copy the full SHA
    6964cb1 View commit details
    Browse the repository at this point in the history

Commits on Oct 4, 2022

  1. Configuration menu
    Copy the full SHA
    5a3fe70 View commit details
    Browse the repository at this point in the history
  2. docs: Conflicting fixes (#16366)

    * docs: Conflicting fixes
    
    Provide additional documentation on conflicting fixes.
    
    Fixes #13721
    
    * Update docs/src/developer-guide/working-with-rules.md
    
    Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>
    
    Co-authored-by: Nicholas C. Zakas <nicholas@humanwhocodes.com>
    bpmutter and nzakas authored Oct 4, 2022
    Configuration menu
    Copy the full SHA
    90c6028 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    720ff75 View commit details
    Browse the repository at this point in the history

Commits on Oct 5, 2022

  1. chore: Remove CODEOWNERS (#16375)

    * chore: Rename CODEOWNERS
    
    * chore: delete CODEWONERS
    nschonni authored Oct 5, 2022
    Configuration menu
    Copy the full SHA
    8476a9b View commit details
    Browse the repository at this point in the history

Commits on Oct 7, 2022

  1. feat: Pass --max-warnings value to formatters (#16348)

    * feat: Pass --max-warnings value to formatters
    
    Fixes #14881
    
    * Make formatter docs wording consistent
    
    Originally suggested by @fasttime in
    #16348 (comment).
    
    * Update LoadedFormatter and FormatterFunction typedefs
    
    Originally suggested by @fasttime in
    #16348 (comment).
    
    Internally, I define two types, `MaxWarningsExceeded` and `ResultsMeta`,
    that the updated `LoadedFormatter` and `FormatterFunction` types can
    use. I'm then able to reuse the `ResultsMeta` type instead of the
    generic `Object` type in `ESLint` and `FlatESLint`'s `format` wrapper
    functions.
    
    Externally in the Node.js API docs, I describe the new second argument
    to `LoadedFormatter`'s `format` method inline rather than separately
    documenting the new types.
    
    While working on this, I noticed that `FlatESLint` is using the
    pre-PR #15727 `Formatter` type rather than `LoadedFormatter` and
    `FormatterFunction`. I'll fix that in a follow-up PR to keep this PR
    scoped to passing `maxWarningsExceeded` info.
    btmills authored Oct 7, 2022
    Configuration menu
    Copy the full SHA
    173e820 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    1f78594 View commit details
    Browse the repository at this point in the history
  3. Build: changelog update for 8.25.0

    ESLint Jenkins committed Oct 7, 2022
    Configuration menu
    Copy the full SHA
    c705f22 View commit details
    Browse the repository at this point in the history
  4. 8.25.0

    ESLint Jenkins committed Oct 7, 2022
    Configuration menu
    Copy the full SHA
    94ba68d View commit details
    Browse the repository at this point in the history
Loading