Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Move all and recommended configs into package. #16844

Merged
merged 14 commits into from Feb 23, 2023
Merged

Conversation

nzakas
Copy link
Member

@nzakas nzakas commented Jan 31, 2023

Prerequisites checklist

What is the purpose of this pull request? (put an "X" next to an item)

[ ] Documentation update
[ ] Bug fix (template)
[ ] New rule (template)
[ ] Changes an existing rule (template)
[ ] Add autofix to a rule
[ ] Add a CLI option
[x] Add something to the core
[ ] Other, please explain:

What changes did you make? (Give an overview)

Relocates the "eslint:all" and "eslint:recommended" configs into the @eslint/js package so they can be referenced from there instead of as strings. I needed to change the "eslint:all" file to be autogenerated at build time rather than from run time because it won't be able to reference the full rule list at run time. (The rules are outside of the package.)

In order to do this, I had to do an initial publish of @eslint/js. I also added a Jenkins job to make releasing this package easy.

Additionally, whenever a file in the lib/rules directory is lint-staged will regenerate eslint-all.js so that we are automatically updating that configuration. We will still have to manually release @eslint/js in the short term if there are any changes.

Fixes #16537

Is there anything you'd like reviewers to focus on?

I added a deprecation notice for using "eslint:recommended" and "eslint:all" as strings inside of flat config to let people know they should switch to @eslint/js. Because people are starting to use flat config, I don't think we want to break this usage. Currently, this results in deprecation notices even when using FlatCompat because we just pass through the strings.

Does it make sense to update @eslint/eslintrc to use @eslint/js directly as well? Or, should we force people to pass in their own reference to @eslint/js in the FlatCompat constructor?

Relocates the "eslint:all" and "eslint:recommended" configs into the
@eslint/js package so they can be referenced from there instead of as
strings.

Fixes #16537
@nzakas nzakas requested a review from a team as a code owner January 31, 2023 18:38
@eslint-github-bot eslint-github-bot bot added triage An ESLint team member will look at this issue soon feature This change adds a new feature to ESLint labels Jan 31, 2023
@netlify
Copy link

netlify bot commented Jan 31, 2023

Deploy Preview for docs-eslint canceled.

Name Link
🔨 Latest commit f8e0b9c
🔍 Latest deploy log https://app.netlify.com/sites/docs-eslint/deploys/63e6bcde638cd700072046e8

@mdjermanovic mdjermanovic added core Relates to ESLint's core APIs and features accepted There is consensus among the team that this change meets the criteria for inclusion and removed triage An ESLint team member will look at this issue soon labels Feb 2, 2023
package.json Outdated Show resolved Hide resolved
tools/update-eslint-all.js Outdated Show resolved Hide resolved
tools/update-eslint-all.js Outdated Show resolved Hide resolved
nzakas and others added 3 commits February 2, 2023 10:35
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Makefile.js Show resolved Hide resolved
package.json Outdated Show resolved Hide resolved
packages/js/README.md Outdated Show resolved Hide resolved
packages/js/LICENSE Outdated Show resolved Hide resolved
packages/js/package.json Outdated Show resolved Hide resolved
packages/js/README.md Outdated Show resolved Hide resolved
packages/js/README.md Outdated Show resolved Hide resolved
packages/js/README.md Outdated Show resolved Hide resolved
packages/js/package.json Outdated Show resolved Hide resolved
packages/js/src/configs/eslint-recommended.js Show resolved Hide resolved
nzakas and others added 10 commits February 10, 2023 13:47
Co-authored-by: Mark Friedrich <exodus4d@users.noreply.github.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
Co-authored-by: Milos Djermanovic <milos.djermanovic@gmail.com>
@nzakas
Copy link
Member Author

nzakas commented Feb 10, 2023

I still need some guidance on this bit:

I added a deprecation notice for using "eslint:recommended" and "eslint:all" as strings inside of flat config to let people know they should switch to @eslint/js. Because people are starting to use flat config, I don't think we want to break this usage. Currently, this results in deprecation notices even when using FlatCompat because we just pass through the strings.

Does it make sense to update @eslint/eslintrc to use @eslint/js directly as well? Or, should we force people to pass in their own reference to @eslint/js in the FlatCompat constructor?

@nzakas
Copy link
Member Author

nzakas commented Feb 16, 2023

@mdjermanovic @btmills I'm blocked on answering that last question. Can you please take a look?

@mdjermanovic
Copy link
Member

Does it make sense to update @eslint/eslintrc to use @eslint/js directly as well? Or, should we force people to pass in their own reference to @eslint/js in the FlatCompat constructor?

I think users should pass in their own references because the sets of all and recommended rules depend on the version of ESLint they're using.

@nzakas
Copy link
Member Author

nzakas commented Feb 20, 2023

That was my thinking, as well. I'll make that change.

@mdjermanovic
Copy link
Member

We will still have to manually release @eslint/js in the short term if there are any changes.

How will we manage versions of the @eslint/js package? The current version is 8.33.0 and the configs contain rules available in ESLint v8.33.0.

Then, for example, we add a new rule in ESLint v8.40.0, so we should also update the eslint:all configuration in @eslint/js and release a new version of this package as well. Will we bump the version to 8.40.0 to match ESLint's version?

@ljharb
Copy link
Sponsor Contributor

ljharb commented Feb 20, 2023

Please don't do lockstep versioning, babel already learned from this mistake :-)

nzakas added a commit to eslint/eslintrc that referenced this pull request Feb 20, 2023
@nzakas
Copy link
Member Author

nzakas commented Feb 20, 2023

I think in the short term it will have to be lockstep releases or else it will be confusing to understand what eslint:all actually means.

The goal is to move all the JS-specific rules, etc. into @eslint/js, so eventually there will be no need for lockstep releases. Temporary pain as we get the infrastructure into the state we want it.

@nzakas
Copy link
Member Author

nzakas commented Feb 20, 2023

eslintrc PR: eslint/eslintrc#103

Copy link
Member

@mdjermanovic mdjermanovic left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM, thanks!

Not merging until eslint/eslintrc#103 is verified.

mdjermanovic pushed a commit to eslint/eslintrc that referenced this pull request Feb 21, 2023
* feat!: Require eslint:all and eslint:recommended as parameters.

Refs eslint/eslint#16844

* Add useful errors

* Fix errors
@mdjermanovic
Copy link
Member

I think in the short term it will have to be lockstep releases or else it will be confusing to understand what eslint:all actually means.

Does this mean that we'll release @eslint/js every time we release eslint, even if there are no changes in @eslint/js, just to bump the latest version to match eslint version?

@nzakas
Copy link
Member Author

nzakas commented Feb 21, 2023

Does this mean that we'll release @eslint/js every time we release eslint, even if there are no changes in @eslint/js, just to bump the latest version to match eslint version?

That's what I was thinking. My main concern is making sure people understand what eslint:all will actually contain. If eslint and @eslint/js have the same version number, then it's easy to tell at a glance that they work together. If we let the two package versions diverge, that relationship gets blurry and could cause confusion.

I'm not super attached to that. If folks think letting the version numbers diverge makes more sense, that's fine with me. I'm willing to bet eslint:all users are a tiny minority of users and that this decision won't affect many.

As I mentioned, eventually the two package versions will diverge, it just seemed like a good idea to hold that off until @eslint/js was completely self-contained.

@mdjermanovic
Copy link
Member

That's what I was thinking. My main concern is making sure people understand what eslint:all will actually contain. If eslint and @eslint/js have the same version number, then it's easy to tell at a glance that they work together. If we let the two package versions diverge, that relationship gets blurry and could cause confusion.

Makes sense to me. 👍

While at this, the next version of eslint will be 8.35.0. So, we'll need @eslint/js v8.35.0. But the current version of @eslint/js is v8.33.0. Shall we release both v8.34.0 and v8.35.0 of @eslint/js this week?

@mdjermanovic
Copy link
Member

eslint/eslintrc#103 has already been merged, so I'm going to merge this too.

@mdjermanovic mdjermanovic merged commit c8c0c71 into main Feb 23, 2023
@mdjermanovic mdjermanovic deleted the issue16537 branch February 23, 2023 20:17
@btmills btmills mentioned this pull request Feb 26, 2023
1 task
crapStone pushed a commit to Calciumdibromid/CaBr2 that referenced this pull request Mar 2, 2023
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [eslint](https://eslint.org) ([source](https://github.com/eslint/eslint)) | devDependencies | minor | [`8.34.0` -> `8.35.0`](https://renovatebot.com/diffs/npm/eslint/8.34.0/8.35.0) |

---

### Release Notes

<details>
<summary>eslint/eslint</summary>

### [`v8.35.0`](https://github.com/eslint/eslint/releases/tag/v8.35.0)

[Compare Source](eslint/eslint@v8.34.0...v8.35.0)

#### Features

-   [`8e34a04`](eslint/eslint@8e34a04) feat: add `afterHashbangComment` option to `lines-around-comment` rule ([#&#8203;16920](eslint/eslint#16920)) (SUZUKI Sosuke)
-   [`c8c0c71`](eslint/eslint@c8c0c71) feat: Move all and recommended configs into package. ([#&#8203;16844](eslint/eslint#16844)) (Nicholas C. Zakas)
-   [`71f6f0d`](eslint/eslint@71f6f0d) feat: report more cases with `??` in no-constant-binary-expression ([#&#8203;16826](eslint/eslint#16826)) (Daiki Nishikawa)

#### Bug Fixes

-   [`9698bc5`](eslint/eslint@9698bc5) fix: pin esquery v1.4.0 (fixes [#&#8203;16896](eslint/eslint#16896)) ([#&#8203;16897](eslint/eslint#16897)) (唯然)

#### Documentation

-   [`f9f195e`](eslint/eslint@f9f195e) docs: Plugin docs cleanup & expansion ([#&#8203;16862](eslint/eslint#16862)) (Ben Perlmutter)
-   [`df809fd`](eslint/eslint@df809fd) docs: Custom Formatters page cleanup/expansion ([#&#8203;16886](eslint/eslint#16886)) (Ben Perlmutter)
-   [`0700d1b`](eslint/eslint@0700d1b) docs: Add PostCSS/Autoprefixer/CSSNano ([#&#8203;16502](eslint/eslint#16502)) (Nick Schonning)
-   [`7b9e9bf`](eslint/eslint@7b9e9bf) docs: support unicode anchors ([#&#8203;16782](eslint/eslint#16782)) (Percy Ma)
-   [`5fbc0bf`](eslint/eslint@5fbc0bf) docs: Update README (GitHub Actions Bot)
-   [`67865a0`](eslint/eslint@67865a0) docs: Remove mention of mailing list ([#&#8203;16869](eslint/eslint#16869)) (Amaresh  S M)
-   [`43af24a`](eslint/eslint@43af24a) docs: Add explanation of when to use 'warn' severity ([#&#8203;16882](eslint/eslint#16882)) (Nicholas C. Zakas)
-   [`ed2999b`](eslint/eslint@ed2999b) docs: Shareable configs page edits and expansion ([#&#8203;16824](eslint/eslint#16824)) (Ben Perlmutter)
-   [`2780635`](eslint/eslint@2780635) docs: fix typos ([#&#8203;16884](eslint/eslint#16884)) (Lioness100)
-   [`5bdaae2`](eslint/eslint@5bdaae2) docs: Ways to Extend ESLint page ([#&#8203;16861](eslint/eslint#16861)) (Ben Perlmutter)

#### Chores

-   [`cdcbe12`](eslint/eslint@cdcbe12) chore: upgrade [@&#8203;eslint/js](https://github.com/eslint/js)[@&#8203;8](https://github.com/8).35.0 ([#&#8203;16935](eslint/eslint#16935)) (Brandon Mills)
-   [`c954c34`](eslint/eslint@c954c34) chore: package.json update for [@&#8203;eslint/js](https://github.com/eslint/js) release (ESLint Jenkins)
-   [`5a517da`](eslint/eslint@5a517da) chore: package.json update for [@&#8203;eslint/js](https://github.com/eslint/js) release (ESLint Jenkins)
-   [`9f10926`](eslint/eslint@9f10926) chore: upgrade [@&#8203;eslint/eslintrc](https://github.com/eslint/eslintrc)[@&#8203;2](https://github.com/2).0.0 ([#&#8203;16928](eslint/eslint#16928)) (Milos Djermanovic)
-   [`da728fa`](eslint/eslint@da728fa) ci: use LTS node version in workflows ([#&#8203;16907](eslint/eslint#16907)) (Nitin Kumar)
-   [`c57b4f3`](eslint/eslint@c57b4f3) perf: upgrade to esquery@1.4.2 ([#&#8203;16901](eslint/eslint#16901)) (Milos Djermanovic)
-   [`9122f07`](eslint/eslint@9122f07) chore: Update stale bot settings ([#&#8203;16870](eslint/eslint#16870)) (Nicholas C. Zakas)

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update again.

---

 - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate).
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNTIuNCIsInVwZGF0ZWRJblZlciI6IjM0LjE1NC4yIn0=-->

Co-authored-by: cabr2-bot <cabr2.help@gmail.com>
Reviewed-on: https://codeberg.org/Calciumdibromid/CaBr2/pulls/1797
Reviewed-by: Epsilon_02 <epsilon_02@noreply.codeberg.org>
Co-authored-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
Co-committed-by: Calciumdibromid Bot <cabr2_bot@noreply.codeberg.org>
Hazmi35 added a commit to Hazmi35/eslint-config that referenced this pull request Mar 19, 2023
This is caused by PR eslint/eslint#16844, moving eslint-recommended.js file to @eslint/js package.
Hazmi35 added a commit to Hazmi35/eslint-config that referenced this pull request Mar 19, 2023
…5.0 (#646)

This is caused by PR eslint/eslint#16844, moving eslint-recommended.js file to @eslint/js package.
Say383 added a commit to Say383/cloud-code-samples that referenced this pull request Apr 1, 2023
<p>This PR was automatically created by Snyk using the credentials of a
real user.</p><br /><h3>Snyk has created this PR to upgrade eslint from
8.29.0 to 8.36.0.</h3>

:information_source: Keep your dependencies up-to-date. This makes it
easier to fix existing vulnerabilities and to more quickly identify and
fix newly disclosed vulnerabilities when they affect your project.
<hr/>

- The recommended version is **7 versions** ahead of your current
version.
- The recommended version was released **21 days ago**, on 2023-03-10.


<details>
<summary><b>Release notes</b></summary>
<br/>
  <details>
    <summary>Package name: <b>eslint</b></summary>
    <ul>
      <li>
<b>8.36.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.36.0">2023-03-10</a></br><h2>Features</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/c89a485c49450532ee3db74f2638429f1f37d0dd"><code>c89a485</code></a>
feat: Add <code>checkJSDoc</code> option to multiline-comment-style (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1552103605" data-permission-text="Title is private"
data-url="eslint/eslint#16807"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16807/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16807">#16807</a>)
(Laurent Cozic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/f5f5e11bd5fd3daab9ccae41e270739c836c305e"><code>f5f5e11</code></a>
feat: Serialize parsers/processors in flat config (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1602025887" data-permission-text="Title is private"
data-url="eslint/eslint#16944"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16944/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16944">#16944</a>)
(Nicholas C. Zakas)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/4799297ea582c81fd1e5623d32a7ddf7a7f3a126"><code>4799297</code></a>
feat: use <a class="user-mention notranslate"
data-hovercard-type="organization"
data-hovercard-url="/orgs/eslint-community/hovercard"
data-octo-click="hovercard-link-click"
data-octo-dimensions="link_type:self"
href="https://snyk.io/redirect/github/eslint-community">@
eslint-community</a> dependencies (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1533046272"
data-permission-text="Title is private"
data-url="eslint/eslint#16784"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16784/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16784">#16784</a>)
(Michaël De Boey)</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/92c1943ba73ea01e87086236e8736539b0eed558"><code>92c1943</code></a>
fix: correctly iterate files matched by glob patterns (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1560692397" data-permission-text="Title is private"
data-url="eslint/eslint#16831"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16831/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16831">#16831</a>)
(Nitin Kumar)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/b98fdd413a3b07b262bfce6f704c1c1bb8582770"><code>b98fdd4</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/caf08ce0cc74917f7c0eec92d25fd784dc33ac4d"><code>caf08ce</code></a>
docs: fix estree link in custom formatters docs (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1613124150" data-permission-text="Title is private"
data-url="eslint/eslint#16967"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16967/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16967">#16967</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/3398431574b903757bc78b08c8ed36b7b9fce8eb"><code>3398431</code></a>
docs: Custom Parsers cleanup/expansion (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1581420423" data-permission-text="Title is private"
data-url="eslint/eslint#16887"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16887/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16887">#16887</a>)
(Ben Perlmutter)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/19d3531d9b54e1004318d28f9a6e18305c5bcc18"><code>19d3531</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/b09a512107249a4eb19ef5a37b0bd672266eafdb"><code>b09a512</code></a>
docs: detect and fix broken links (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1561144081"
data-permission-text="Title is private"
data-url="eslint/eslint#16837"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16837/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16837">#16837</a>)
(Nitin Kumar)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/602b11121910a97ab2bc4a95a46dd0ccd0a89309"><code>602b111</code></a>
chore: upgrade @ eslint/js@8.36.0 (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1619658922"
data-permission-text="Title is private"
data-url="eslint/eslint#16978"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16978/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16978">#16978</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/43c2345c27024aeab6127e6bbfd55c8b70bd317e"><code>43c2345</code></a>
chore: package.json update for @ eslint/js release (ESLint Jenkins)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/00afb84e5039874c8745a45c953fceaf0c71c454"><code>00afb84</code></a>
chore: upgrade @ eslint/eslintrc@2.0.1 (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1619639257" data-permission-text="Title is private"
data-url="eslint/eslint#16977"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16977/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16977">#16977</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/698c5aad50e628ff00281dbc786e42de79834035"><code>698c5aa</code></a>
chore: upgrade espree@9.5.0 (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1619608245"
data-permission-text="Title is private"
data-url="eslint/eslint#16976"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16976/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16976">#16976</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/75acdd21c5ce7024252e9d41ed77d2f30587caac"><code>75acdd2</code></a>
chore: lint more js files in docs (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1611189845"
data-permission-text="Title is private"
data-url="eslint/eslint#16964"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16964/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16964">#16964</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/89d9844b3151f09b5b21b6eeeda671009ec301e9"><code>89d9844</code></a>
ci: bump actions/add-to-project from 0.4.0 to 0.4.1 (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1601964850" data-permission-text="Title is private"
data-url="eslint/eslint#16943"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16943/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16943">#16943</a>)
(dependabot[bot])</li>
</ul>
      </li>
      <li>
<b>8.35.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.35.0">2023-02-26</a></br><h2>Features</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/8e34a04e3a4395bce59bc6acadf84281abc11d18"><code>8e34a04</code></a>
feat: add <code>afterHashbangComment</code> option to
<code>lines-around-comment</code> rule (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1594414688" data-permission-text="Title is private"
data-url="eslint/eslint#16920"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16920/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16920">#16920</a>)
(SUZUKI Sosuke)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/c8c0c715a2964cc1859b99f9d4f542675094d1d5"><code>c8c0c71</code></a>
feat: Move all and recommended configs into package. (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1564820850" data-permission-text="Title is private"
data-url="eslint/eslint#16844"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16844/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16844">#16844</a>)
(Nicholas C. Zakas)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/71f6f0dcd574320ee71c3eb1f313841899bdf260"><code>71f6f0d</code></a>
feat: report more cases with <code>??</code> in
no-constant-binary-expression (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1556768758"
data-permission-text="Title is private"
data-url="eslint/eslint#16826"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16826/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16826">#16826</a>)
(Daiki Nishikawa)</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/9698bc5cdec1bbee567a6a489da82e87fe65d019"><code>9698bc5</code></a>
fix: pin esquery v1.4.0 (fixes <a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1586876278"
data-permission-text="Title is private"
data-url="eslint/eslint#16896"
data-hovercard-type="issue"
data-hovercard-url="/eslint/eslint/issues/16896/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/issues/16896">#16896</a>)
(<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="1587012135" data-permission-text="Title is private"
data-url="eslint/eslint#16897"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16897/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16897">#16897</a>)
(唯然)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/f9f195ef12deb114fb86763010a23ea0cb4c78d1"><code>f9f195e</code></a>
docs: Plugin docs cleanup &amp; expansion (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1571606528" data-permission-text="Title is private"
data-url="eslint/eslint#16862"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16862/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16862">#16862</a>)
(Ben Perlmutter)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/df809fdedc5fc92df4be8340e28baedbde605b4f"><code>df809fd</code></a>
docs: Custom Formatters page cleanup/expansion (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1581406102" data-permission-text="Title is private"
data-url="eslint/eslint#16886"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16886/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16886">#16886</a>)
(Ben Perlmutter)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/0700d1b14659bf39b1a08f082c44c9084cf676a8"><code>0700d1b</code></a>
docs: Add PostCSS/Autoprefixer/CSSNano (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1437256550" data-permission-text="Title is private"
data-url="eslint/eslint#16502"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16502/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16502">#16502</a>)
(Nick Schonning)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/7b9e9bf78bedb009fe2813308ede1f46502c3890"><code>7b9e9bf</code></a>
docs: support unicode anchors (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1531820418"
data-permission-text="Title is private"
data-url="eslint/eslint#16782"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16782/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16782">#16782</a>)
(Percy Ma)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/5fbc0bffdd9f84feb43296eb502d1e484fb323f2"><code>5fbc0bf</code></a>
docs: Update README (GitHub Actions Bot)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/67865a064cc1a4e320030299edc1cfdd1f9ac3b8"><code>67865a0</code></a>
docs: Remove mention of mailing list (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1574837966" data-permission-text="Title is private"
data-url="eslint/eslint#16869"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16869/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16869">#16869</a>)
(Amaresh S M)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/43af24a88b939a62880c37d1332b02f677d82f16"><code>43af24a</code></a>
docs: Add explanation of when to use 'warn' severity (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1580359377" data-permission-text="Title is private"
data-url="eslint/eslint#16882"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16882/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16882">#16882</a>)
(Nicholas C. Zakas)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/ed2999b38b4d61f5c278301738e294012d5d3c9e"><code>ed2999b</code></a>
docs: Shareable configs page edits and expansion (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1555969805" data-permission-text="Title is private"
data-url="eslint/eslint#16824"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16824/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16824">#16824</a>)
(Ben Perlmutter)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/27806358b5e1c4d37b63b1c61595e86ff03b5b42"><code>2780635</code></a>
docs: fix typos (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1581300981"
data-permission-text="Title is private"
data-url="eslint/eslint#16884"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16884/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16884">#16884</a>)
(Lioness100)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/5bdaae205c3a0089ea338b382df59e21d5b06436"><code>5bdaae2</code></a>
docs: Ways to Extend ESLint page (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1571572879"
data-permission-text="Title is private"
data-url="eslint/eslint#16861"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16861/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16861">#16861</a>)
(Ben Perlmutter)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/cdcbe127de20cbcc4e24131a808c13b1024e61a2"><code>cdcbe12</code></a>
chore: upgrade @ eslint/js@8.35.0 (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1599888767"
data-permission-text="Title is private"
data-url="eslint/eslint#16935"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16935/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16935">#16935</a>)
(Brandon Mills)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/c954c349c0c2f88919614efc95e1368c245582fd"><code>c954c34</code></a>
chore: package.json update for @ eslint/js release (ESLint Jenkins)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/5a517da8e55f6de28e9c028c5627fa7d82945969"><code>5a517da</code></a>
chore: package.json update for @ eslint/js release (ESLint Jenkins)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/9f10926d76be7cf675721b29bd5030e85cb4ab30"><code>9f10926</code></a>
chore: upgrade @ eslint/eslintrc@2.0.0 (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1597681566" data-permission-text="Title is private"
data-url="eslint/eslint#16928"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16928/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16928">#16928</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/da728fae6c4e5fdda74195e84d45d67ad5cafc45"><code>da728fa</code></a>
ci: use LTS node version in workflows (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1590537848" data-permission-text="Title is private"
data-url="eslint/eslint#16907"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16907/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16907">#16907</a>)
(Nitin Kumar)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/c57b4f3dc6383e452120381204ee4a7c874225a0"><code>c57b4f3</code></a>
perf: upgrade to esquery@1.4.2 (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1588145417"
data-permission-text="Title is private"
data-url="eslint/eslint#16901"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16901/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16901">#16901</a>)
(Milos Djermanovic)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/9122f0764031dc36970df715bc5e16973890e18d"><code>9122f07</code></a>
chore: Update stale bot settings (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1575084478"
data-permission-text="Title is private"
data-url="eslint/eslint#16870"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16870/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16870">#16870</a>)
(Nicholas C. Zakas)</li>
</ul>
      </li>
      <li>
<b>8.34.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.34.0">2023-02-10</a></br><h2>Features</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/9b2fcf7e928fc92ac6d43617bdee1bda250b7491"><code>9b2fcf7</code></a>
feat: <code>array-callback-return</code> supports
<code>Array.prototype.toSorted</code> (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1564927810" data-permission-text="Title is private"
data-url="eslint/eslint#16845"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16845/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16845">#16845</a>)
(SUZUKI Sosuke)</li>
</ul>
<h2>Bug Fixes</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/923f61d8fc82d83b912c6ba95abb5a509c4d7b52"><code>923f61d</code></a>
fix: false positive with assignment in <code>no-extra-parens</code> (<a
class="issue-link js-issue-link" data-error-text="Failed to load title"
data-id="1575174966" data-permission-text="Title is private"
data-url="eslint/eslint#16872"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16872/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16872">#16872</a>)
(Francesco Trotta)</li>
</ul>
<h2>Documentation</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/f0a988384ea1a262150e70d83abd8a5e50c46fa7"><code>f0a9883</code></a>
docs: split rules documentation (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1548482502"
data-permission-text="Title is private"
data-url="eslint/eslint#16797"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16797/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16797">#16797</a>)
(Ben Perlmutter)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/67aa37b583f059226b9c959672400f04ed6a56b5"><code>67aa37b</code></a>
docs: fix typo in command-line-interface.md (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1575115886" data-permission-text="Title is private"
data-url="eslint/eslint#16871"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16871/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16871">#16871</a>)
(Kevin Rouchut)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/337f7ed96131d873be7ae6b010739476d0ad15e9"><code>337f7ed</code></a>
docs: fix width of language input (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1567615386"
data-permission-text="Title is private"
data-url="eslint/eslint#16849"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16849/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16849">#16849</a>)
(Tanuj Kanti)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/71349a1f709baa361bd656a7ce4a7d35d857a9a8"><code>71349a1</code></a>
docs: Configure a Parser page (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1551917864"
data-permission-text="Title is private"
data-url="eslint/eslint#16803"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16803/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16803">#16803</a>)
(Ben Perlmutter)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/de7e925d03764f3681269b30bb60b92ee463c10f"><code>de7e925</code></a>
docs: remove extra line numbers in example (<a class="issue-link
js-issue-link" data-error-text="Failed to load title"
data-id="1566040112" data-permission-text="Title is private"
data-url="eslint/eslint#16848"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16848/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16848">#16848</a>)
(jonz94)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/ad38d77102d6fe30cfa92c831174f178bb35c88b"><code>ad38d77</code></a>
docs: Update README (GitHub Actions Bot)</li>
</ul>
<h2>Chores</h2>
<ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/9dbe06d0ad875e6d5964497e2975e8d789e763d0"><code>9dbe06d</code></a>
chore: add <code>type</code> property to array-element-newline schema
(<a class="issue-link js-issue-link" data-error-text="Failed to load
title" data-id="1576466826" data-permission-text="Title is private"
data-url="eslint/eslint#16877"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16877/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16877">#16877</a>)
(MHO)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/a061527a0332f0edf559acfc2902a327cae098d9"><code>a061527</code></a>
chore: Remove unused functions (<a class="issue-link js-issue-link"
data-error-text="Failed to load title" data-id="1574809163"
data-permission-text="Title is private"
data-url="eslint/eslint#16868"
data-hovercard-type="pull_request"
data-hovercard-url="/eslint/eslint/pull/16868/hovercard"
href="https://snyk.io/redirect/github/eslint/eslint/pull/16868">#16868</a>)
(Nicholas C. Zakas)</li>
</ul>
      </li>
      <li>
<b>8.33.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.33.0">2023-01-28</a></br><a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.33.0">
Read more </a>
      </li>
      <li>
<b>8.32.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.32.0">2023-01-15</a></br><a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.32.0">
Read more </a>
      </li>
      <li>
<b>8.31.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.31.0">2022-12-31</a></br><a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.31.0">
Read more </a>
      </li>
      <li>
<b>8.30.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.30.0">2022-12-16</a></br><a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.30.0">
Read more </a>
      </li>
      <li>
<b>8.29.0</b> - <a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.29.0">2022-12-02</a></br><a
href="https://snyk.io/redirect/github/eslint/eslint/releases/tag/v8.29.0">
Read more </a>
      </li>
    </ul>
from <a
href="https://snyk.io/redirect/github/eslint/eslint/releases">eslint
GitHub release notes</a>
  </details>
</details>


<details>
  <summary><b>Commit messages</b></summary>
  </br>
  <details>
    <summary>Package name: <b>eslint</b></summary>
    <ul>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/75df535681d15d7d685468d637945a200301f9ee">75df535</a>
8.36.0</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/a0c856a82266107c8c93a695700b1f69a238316e">a0c856a</a>
Build: changelog update for 8.36.0</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/602b11121910a97ab2bc4a95a46dd0ccd0a89309">602b111</a>
chore: upgrade @ eslint/js@8.36.0 (#16978)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/43c2345c27024aeab6127e6bbfd55c8b70bd317e">43c2345</a>
chore: package.json update for @ eslint/js release</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/00afb84e5039874c8745a45c953fceaf0c71c454">00afb84</a>
chore: upgrade @ eslint/eslintrc@2.0.1 (#16977)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/698c5aad50e628ff00281dbc786e42de79834035">698c5aa</a>
chore: upgrade espree@9.5.0 (#16976)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/b98fdd413a3b07b262bfce6f704c1c1bb8582770">b98fdd4</a>
docs: Update README</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/c89a485c49450532ee3db74f2638429f1f37d0dd">c89a485</a>
feat: Add &#x60;checkJSDoc&#x60; option to multiline-comment-style
(#16807)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/f5f5e11bd5fd3daab9ccae41e270739c836c305e">f5f5e11</a>
feat: Serialize parsers/processors in flat config (#16944)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/caf08ce0cc74917f7c0eec92d25fd784dc33ac4d">caf08ce</a>
docs: fix estree link in custom formatters docs (#16967)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/75acdd21c5ce7024252e9d41ed77d2f30587caac">75acdd2</a>
chore: lint more js files in docs (#16964)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/3398431574b903757bc78b08c8ed36b7b9fce8eb">3398431</a>
docs: Custom Parsers cleanup/expansion (#16887)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/19d3531d9b54e1004318d28f9a6e18305c5bcc18">19d3531</a>
docs: Update README</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/4799297ea582c81fd1e5623d32a7ddf7a7f3a126">4799297</a>
feat: use @ eslint-community dependencies (#16784)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/b09a512107249a4eb19ef5a37b0bd672266eafdb">b09a512</a>
docs: detect and fix broken links (#16837)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/92c1943ba73ea01e87086236e8736539b0eed558">92c1943</a>
fix: correctly iterate files matched by glob patterns (#16831)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/89d9844b3151f09b5b21b6eeeda671009ec301e9">89d9844</a>
ci: bump actions/add-to-project from 0.4.0 to 0.4.1 (#16943)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/0e869b37ed7a4e62d1ee1e3878a344353a6d9b30">0e869b3</a>
8.35.0</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/2aa7b67560a8743711115d606528cf01d573c429">2aa7b67</a>
Build: changelog update for 8.35.0</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/cdcbe127de20cbcc4e24131a808c13b1024e61a2">cdcbe12</a>
chore: upgrade @ eslint/js@8.35.0 (#16935)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/c954c349c0c2f88919614efc95e1368c245582fd">c954c34</a>
chore: package.json update for @ eslint/js release</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/5a517da8e55f6de28e9c028c5627fa7d82945969">5a517da</a>
chore: package.json update for @ eslint/js release</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/9f10926d76be7cf675721b29bd5030e85cb4ab30">9f10926</a>
chore: upgrade @ eslint/eslintrc@2.0.0 (#16928)</li>
<li><a
href="https://snyk.io/redirect/github/eslint/eslint/commit/8e34a04e3a4395bce59bc6acadf84281abc11d18">8e34a04</a>
feat: add &#x60;afterHashbangComment&#x60; option to
&#x60;lines-around-comment&#x60; rule (#16920)</li>
    </ul>

<a
href="https://snyk.io/redirect/github/eslint/eslint/compare/d3e4b59f63e53436080b8da827521d6b41a72cea...75df535681d15d7d685468d637945a200301f9ee">Compare</a>
  </details>
</details>
<hr/>

**Note:** *You are seeing this because you or someone else with access
to this repository has authorized Snyk to open upgrade PRs.*

For more information: <img
src="https://api.segment.io/v1/pixel/track?data=eyJ3cml0ZUtleSI6InJyWmxZcEdHY2RyTHZsb0lYd0dUcVg4WkFRTnNCOUEwIiwiYW5vbnltb3VzSWQiOiJmMzBhZWQ1ZS1jYTAwLTQ2NDgtYWViYy1lOWZhZTFiODBlZjAiLCJldmVudCI6IlBSIHZpZXdlZCIsInByb3BlcnRpZXMiOnsicHJJZCI6ImYzMGFlZDVlLWNhMDAtNDY0OC1hZWJjLWU5ZmFlMWI4MGVmMCJ9fQ=="
width="0" height="0"/>

🧐 [View latest project
report](https://app.snyk.io/org/say383/project/606b3112-da74-4ab7-9340-b11e89448124?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🛠 [Adjust upgrade PR
settings](https://app.snyk.io/org/say383/project/606b3112-da74-4ab7-9340-b11e89448124/settings/integration?utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr)

🔕 [Ignore this dependency or unsubscribe from future upgrade
PRs](https://app.snyk.io/org/say383/project/606b3112-da74-4ab7-9340-b11e89448124/settings/integration?pkg&#x3D;eslint&amp;utm_source&#x3D;github&amp;utm_medium&#x3D;referral&amp;page&#x3D;upgrade-pr#auto-dep-upgrades)

<!---
(snyk:metadata:{"prId":"f30aed5e-ca00-4648-aebc-e9fae1b80ef0","prPublicId":"f30aed5e-ca00-4648-aebc-e9fae1b80ef0","dependencies":[{"name":"eslint","from":"8.29.0","to":"8.36.0"}],"packageManager":"npm","type":"auto","projectUrl":"https://app.snyk.io/org/say383/project/606b3112-da74-4ab7-9340-b11e89448124?utm_source=github&utm_medium=referral&page=upgrade-pr","projectPublicId":"606b3112-da74-4ab7-9340-b11e89448124","env":"prod","prType":"upgrade","vulns":[],"issuesToFix":[],"upgrade":[],"upgradeInfo":{"versionsDiff":7,"publishedDate":"2023-03-10T22:16:38.111Z"},"templateVariants":[],"hasFixes":false,"isMajorUpgrade":false,"isBreakingChange":false,"priorityScoreList":[]})
--->
legobeat added a commit to legobeat/eslint-config that referenced this pull request Jul 18, 2023
legobeat added a commit to legobeat/eslint-config that referenced this pull request Jul 19, 2023
legobeat added a commit to MetaMask/eslint-config that referenced this pull request Jul 19, 2023
* replace eslint patch with @eslint/js devDep
   eslint/eslint#16844
@eslint-github-bot eslint-github-bot bot locked and limited conversation to collaborators Aug 23, 2023
@eslint-github-bot eslint-github-bot bot added the archived due to age This issue has been archived; please open a new issue for any further discussion label Aug 23, 2023
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
accepted There is consensus among the team that this change meets the criteria for inclusion archived due to age This issue has been archived; please open a new issue for any further discussion core Relates to ESLint's core APIs and features feature This change adds a new feature to ESLint
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Change Request: Specifying files and ignores for eslint:recommended/eslint:all
5 participants