[PR #2655] [CLOSED] chore(deps-dev): bump @nuxtjs/eslint-config-typescript from 9.0.0 to 11.0.0 #3966

Closed
opened 2026-03-17 01:32:21 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/hoppscotch/hoppscotch/pull/2655
Author: @dependabot[bot]
Created: 9/12/2022
Status: Closed

Base: mainHead: dependabot/npm_and_yarn/nuxtjs/eslint-config-typescript-11.0.0


📝 Commits (1)

  • d097760 chore(deps-dev): bump @nuxtjs/eslint-config-typescript

📊 Changes

1 file changed (+1 additions, -1 deletions)

View changed files

📝 packages/hoppscotch-app/package.json (+1 -1)

📄 Description

Bumps @nuxtjs/eslint-config-typescript from 9.0.0 to 11.0.0.

Changelog

Sourced from @​nuxtjs/eslint-config-typescript's changelog.

11.0.0 (2022-08-31)

Bug Fixes

  • disable vue/multi-word-component-names for files in subdirectories (#211) (c54d7fd), closes #208

10.0.0 (2022-05-02)

Bug Fixes

  • add missing dependency eslint-plugin-n (022aa5f)

  • add missing peer dependency eslint-plugin-import (resolves #148) (80f0b89)

  • disable vue/multi-word-component-names for app.vue and error.vue (resolves #201) (bbb0e27)

  • disable multiword-rule (#190) (821057e)

  • eslint-config-typescript: use parser config (7617549)

  • eslint-plugin-import ordering errors in windows (39ad2b4)

  • eslint-plugin-import ordering errors in windows (4f6f4a9)

  • remove dependency on eslint-plugin-standard (#185) (ee47f83)

  • turn off typescript 'no-undef' rule per docs (#144) (ddb552b)

  • typescript: import/named errors when using TypeScript (#170) (401d626)

  • use @​typescript-eslint/parser under vue-eslint-parser (bea5b05)

  • feat!: remove eslint-plugin-jest dependency (resolves #180) (952edbb), closes #180

Features

  • update eslint config packages (a3bb0bf)
  • warn console and debugger in dev (#56) (425a8fa)

BREAKING CHANGES

  • You have to manually add jest plugin and jest/globals to the env object in eslint config
Commits
  • 8fce580 v11.0.0
  • 9507b7b chore(deps): update all non-major dependencies to ^5.36.1 (#227)
  • 4ae8310 chore(deps): lock file maintenance (#214)
  • 38bb3f9 chore(deps): update devdependency lerna to v5 (#215)
  • 193aa21 chore(deps): update all non-major dependencies (#226)
  • 34313a6 chore(deps): update dependency eslint-plugin-unicorn to v43 (#220)
  • e54bc72 chore(deps): update dependency eslint-import-resolver-typescript to v3 (#218)
  • 8feddea chore(deps): update all non-major dependencies (#213)
  • c54d7fd fix: disable vue/multi-word-component-names for files in subdirectories (#211)
  • d4250a6 chore(deps): lock file maintenance (#210)
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/hoppscotch/hoppscotch/pull/2655 **Author:** [@dependabot[bot]](https://github.com/apps/dependabot) **Created:** 9/12/2022 **Status:** ❌ Closed **Base:** `main` ← **Head:** `dependabot/npm_and_yarn/nuxtjs/eslint-config-typescript-11.0.0` --- ### 📝 Commits (1) - [`d097760`](https://github.com/hoppscotch/hoppscotch/commit/d09776048affe86931363cd5d741520706f751a2) chore(deps-dev): bump @nuxtjs/eslint-config-typescript ### 📊 Changes **1 file changed** (+1 additions, -1 deletions) <details> <summary>View changed files</summary> 📝 `packages/hoppscotch-app/package.json` (+1 -1) </details> ### 📄 Description Bumps [@nuxtjs/eslint-config-typescript](https://github.com/nuxt/eslint-config) from 9.0.0 to 11.0.0. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nuxt/eslint-config/blob/main/CHANGELOG.md"><code>@​nuxtjs/eslint-config-typescript</code>'s changelog</a>.</em></p> <blockquote> <h1><a href="https://github.com/nuxt/eslint-config/compare/v10.0.0...v11.0.0">11.0.0</a> (2022-08-31)</h1> <h3>Bug Fixes</h3> <ul> <li>disable vue/multi-word-component-names for files in subdirectories (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/211">#211</a>) (<a href="https://github.com/nuxt/eslint-config/commit/c54d7fd648e39b139cd63ff5f96f63bd40ac4981">c54d7fd</a>), closes <a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/208">#208</a></li> </ul> <h1><a href="https://github.com/nuxt/eslint-config/compare/v1.0.1...v10.0.0">10.0.0</a> (2022-05-02)</h1> <h3>Bug Fixes</h3> <ul> <li> <p>add missing dependency <code>eslint-plugin-n</code> (<a href="https://github.com/nuxt/eslint-config/commit/022aa5f69c260242db89d9b4b08ed80de74b2928">022aa5f</a>)</p> </li> <li> <p>add missing peer dependency <code>eslint-plugin-import</code> (resolves <a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/148">#148</a>) (<a href="https://github.com/nuxt/eslint-config/commit/80f0b89f6de7f5723c117d4a5554fae2bf7f9606">80f0b89</a>)</p> </li> <li> <p>disable <code>vue/multi-word-component-names</code> for <code>app.vue</code> and <code>error.vue</code> (resolves <a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/201">#201</a>) (<a href="https://github.com/nuxt/eslint-config/commit/bbb0e27b5d1b5a7f995f0a352baa5fce88669dc5">bbb0e27</a>)</p> </li> <li> <p>disable multiword-rule (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/190">#190</a>) (<a href="https://github.com/nuxt/eslint-config/commit/821057e36dab67caf8052a4282df42ea25e61f3a">821057e</a>)</p> </li> <li> <p><strong>eslint-config-typescript:</strong> use parser config (<a href="https://github.com/nuxt/eslint-config/commit/7617549147d16018ed46a073bffff920b89e1bfb">7617549</a>)</p> </li> <li> <p>eslint-plugin-import ordering errors in windows (<a href="https://github.com/nuxt/eslint-config/commit/39ad2b46da470198f71ba111ee23d9b037a49a75">39ad2b4</a>)</p> </li> <li> <p>eslint-plugin-import ordering errors in windows (<a href="https://github.com/nuxt/eslint-config/commit/4f6f4a9566149e438bfdf9046f82151e050d7ce7">4f6f4a9</a>)</p> </li> <li> <p>remove dependency on <code>eslint-plugin-standard</code> (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/185">#185</a>) (<a href="https://github.com/nuxt/eslint-config/commit/ee47f83e45497354c7002c30a2374a7941bc7ee8">ee47f83</a>)</p> </li> <li> <p>turn off typescript 'no-undef' rule per docs (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/144">#144</a>) (<a href="https://github.com/nuxt/eslint-config/commit/ddb552bb76b4f379f9f23827ccdf8708be12ad27">ddb552b</a>)</p> </li> <li> <p><strong>typescript:</strong> import/named errors when using TypeScript (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/170">#170</a>) (<a href="https://github.com/nuxt/eslint-config/commit/401d6262eed320465b3fb3eb8a0067fc8bf935b3">401d626</a>)</p> </li> <li> <p>use <code>@​typescript-eslint/parser</code> under vue-eslint-parser (<a href="https://github.com/nuxt/eslint-config/commit/bea5b052e322d8c59bdef96d90300d3dda28ed9c">bea5b05</a>)</p> </li> <li> <p>feat!: remove <code>eslint-plugin-jest</code> dependency (resolves <a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/180">#180</a>) (<a href="https://github.com/nuxt/eslint-config/commit/952edbba907501933b71e725d6a668b2870a7d9b">952edbb</a>), closes <a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/180">#180</a></p> </li> </ul> <h3>Features</h3> <ul> <li>update eslint config packages (<a href="https://github.com/nuxt/eslint-config/commit/a3bb0bfb923f18fd11447e048a29d11f29a3aa75">a3bb0bf</a>)</li> <li>warn console and debugger in dev (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/56">#56</a>) (<a href="https://github.com/nuxt/eslint-config/commit/425a8fa4e19d62455a0e37b6cbfc232c96c1a381">425a8fa</a>)</li> </ul> <h3>BREAKING CHANGES</h3> <ul> <li>You have to manually add jest plugin and <code>jest/globals</code> to the <code>env</code> object in eslint config</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/nuxt/eslint-config/commit/8fce580bac9d3e41c0f65173b38f0e265a5e6259"><code>8fce580</code></a> v11.0.0</li> <li><a href="https://github.com/nuxt/eslint-config/commit/9507b7b5b512d4f770edc044097bcb523ff5db82"><code>9507b7b</code></a> chore(deps): update all non-major dependencies to ^5.36.1 (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/227">#227</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/4ae8310d3be9c161b50a6f99c77914ceafadc1ff"><code>4ae8310</code></a> chore(deps): lock file maintenance (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/214">#214</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/38bb3f9a1a7875fd6a589f8c2bf95629b87d0943"><code>38bb3f9</code></a> chore(deps): update devdependency lerna to v5 (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/215">#215</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/193aa21b08f1f810bf1f8b9344f13fc17058e2fa"><code>193aa21</code></a> chore(deps): update all non-major dependencies (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/226">#226</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/34313a6a047350c2d0e6583240236445275bbcba"><code>34313a6</code></a> chore(deps): update dependency eslint-plugin-unicorn to v43 (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/220">#220</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/e54bc720a830229986e7e8ad269a972e416b08be"><code>e54bc72</code></a> chore(deps): update dependency eslint-import-resolver-typescript to v3 (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/218">#218</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/8feddea64437376b8193ee5dcd38beb8d31c85da"><code>8feddea</code></a> chore(deps): update all non-major dependencies (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/213">#213</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/c54d7fd648e39b139cd63ff5f96f63bd40ac4981"><code>c54d7fd</code></a> fix: disable vue/multi-word-component-names for files in subdirectories (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/211">#211</a>)</li> <li><a href="https://github.com/nuxt/eslint-config/commit/d4250a6e4d57835d7c9d3c017ab82a1f55383c98"><code>d4250a6</code></a> chore(deps): lock file maintenance (<a href="https://github-redirect.dependabot.com/nuxt/eslint-config/issues/210">#210</a>)</li> <li>Additional commits viewable in <a href="https://github.com/nuxt/eslint-config/compare/@nuxtjs/eslint-config-typescript@9.0.0...v11.0.0">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@nuxtjs/eslint-config-typescript&package-manager=npm_and_yarn&previous-version=9.0.0&new-version=11.0.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-17 01:32:21 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/hoppscotch#3966
No description provided.