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-community/eslint-plugin-eslint-plugin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.3.0
Choose a base ref
...
head repository: eslint-community/eslint-plugin-eslint-plugin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.4.0
Choose a head ref
  • 6 commits
  • 7 files changed
  • 6 contributors

Commits on Feb 6, 2024

  1. docs: typo fix in README.md for excluding/including (#443)

    * docs: typo fix in README.md for excluding/including
    
    * flip
    JoshuaKGoldberg authored Feb 6, 2024
    Configuration menu
    Copy the full SHA
    cb330fc View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    118643c View commit details
    Browse the repository at this point in the history

Commits on Feb 14, 2024

  1. build(deps): Bump google-github-actions/release-please-action from 3 …

    …to 4 (#436)
    
    build(deps): Bump google-github-actions/release-please-action
    
    Bumps [google-github-actions/release-please-action](https://github.com/google-github-actions/release-please-action) from 3 to 4.
    - [Release notes](https://github.com/google-github-actions/release-please-action/releases)
    - [Changelog](https://github.com/google-github-actions/release-please-action/blob/main/CHANGELOG.md)
    - [Commits](google-github-actions/release-please-action@v3...v4)
    
    ---
    updated-dependencies:
    - dependency-name: google-github-actions/release-please-action
      dependency-type: direct:production
      update-type: version-update:semver-major
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    dependabot[bot] authored Feb 14, 2024
    Configuration menu
    Copy the full SHA
    20e72f4 View commit details
    Browse the repository at this point in the history

Commits on Feb 18, 2024

  1. chore: Fix lint (#448)

    chore: fix lint
    bmish authored Feb 18, 2024
    Configuration menu
    Copy the full SHA
    29ddd2e View commit details
    Browse the repository at this point in the history

Commits on Feb 26, 2024

  1. feat: support named exports in ESM/TS (#449)

    * feat: support named exports in ESM/TS
    
    This adds support for named exports in ESM (whether it be TS or not).
    
    For example:
    
    ```ts
    export const rule: RuleModule = {
      create: () => { ... };
    };
    ```
    
    Also, exported symbols:
    
    ```ts
    const rule = { ... };
    
    export {rule};
    ```
    
    While ESLint plugins are still usually CJS at time of writing this, many
    are written as ESM sources, and an increasing number are using named
    exports.
    
    * chore: document node types & add cjs tests
    43081j authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    aa15471 View commit details
    Browse the repository at this point in the history
  2. chore(main): release 5.4.0 (#444)

    Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
    github-actions[bot] authored Feb 26, 2024
    Configuration menu
    Copy the full SHA
    8a6f148 View commit details
    Browse the repository at this point in the history
Loading