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

chore(deps): update linters #742

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open

chore(deps): update linters #742

wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-import-resolver-typescript 3.6.1 -> 3.6.3 age adoption passing confidence
eslint-plugin-simple-import-sort 12.0.0 -> 12.1.1 age adoption passing confidence
eslint-plugin-storybook 0.8.0 -> 0.9.0 age adoption passing confidence
eslint-plugin-vitest 0.4.1 -> 0.5.4 age adoption passing confidence
prettier (source) 3.2.5 -> 3.3.3 age adoption passing confidence

Release Notes

import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)

v3.6.3

Compare Source

Patch Changes
lydell/eslint-plugin-simple-import-sort (eslint-plugin-simple-import-sort)

v12.1.1

Compare Source

This release adds a short meta.docs.description to each rule. Thanks to fisker Cheung (@​fisker)!

v12.1.0

Compare Source

This release adds TypeScript type definitions for the plugin itself. This is useful when you use TypeScript to check your ESLint configuration. It assumes that you install @types/eslint yourself. Thanks to @​Logicer16!

storybookjs/eslint-plugin-storybook (eslint-plugin-storybook)

v0.9.0

Compare Source

🚀 Enhancement
🐛 Bug Fix
Authors: 3

veritem/eslint-plugin-vitest (eslint-plugin-vitest)

v0.5.4

Compare Source

Features
  • support old Eslint configuration
  • update dependencies

v0.5.3

Compare Source

Bug Fixes

v0.5.2

Compare Source

Features

v0.5.1

Compare Source

Bug Fixes
  • no-focused-tests: support .each template strings (#​420) (36e5b9a)

v0.5.0

Compare Source

‼️ Breaking Change 🚨

This version only supports flat config!

If you run into issues consider downgrading and opening an issue ofcourse.

Full Changelog: vitest-dev/eslint-plugin-vitest@v0.5.0...v0.5.0

prettier/prettier (prettier)

v3.3.3

Compare Source

diff

Add parentheses for nullish coalescing in ternary (#​16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);
Add parentheses for decorator expressions (#​16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@​(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​foo`tagged template`
class X {}

// Prettier 3.3.3
@​(foo`tagged template`)
class X {}
Support @let declaration syntax (#​16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

@​let name = 'Frodo';

<h1>Dashboard for {{name}}</h1>
Hello, {{name}}

For more details, please refer to the excellent blog post by the Angular Team: Introducing @​let in Angular.

We also appreciate the Angular Team for kindly answering our questions to implement this feature.

v3.3.2

Compare Source

diff

Fix handlebars path expressions starts with @ (#​16358 by @​Princeyadav05)
{{! Input }}
<div>{{@&#8203;x.y.z}}</div>

{{! Prettier 3.3.1 }}
<div>{{@&#8203;x}}</div>

{{! Prettier 3.3.2 }}
<div>{{@&#8203;x.y.z}}</div>

v3.3.1

Compare Source

diff

Preserve empty lines in front matter (#​16347 by @​fisker)
<!-- Input -->
---
foo:
  - bar1

  - bar2

  - bar3
---
Markdown

<!-- Prettier 3.3.0 -->

---
foo:
  - bar1
  - bar2
  - bar3
---

Markdown

<!-- Prettier 3.3.1 -->
---
foo:
  - bar1

  - bar2

  - bar3
---

Markdown
Preserve explicit language in front matter (#​16348 by @​fisker)
<!-- Input -->
---yaml
title: Hello
slug: home
---

<!-- Prettier 3.3.0 -->
---
title: Hello
slug: home
---

<!-- Prettier 3.3.1 -->
---yaml
title: Hello
slug: home
---
Avoid line breaks in import attributes (#​16349 by @​fisker)
// Input
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

// Prettier 3.3.0
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type:
  "json" };

// Prettier 3.3.1
import something from "./some-very-very-very-very-very-very-very-very-long-path.json" with { type: "json" };

v3.3.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: Branch creation - "every weekday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Apr 15, 2024
@renovate renovate bot enabled auto-merge (squash) April 15, 2024 06:55
Copy link

netlify bot commented Apr 15, 2024

Deploy Preview for doist-typist ready!

Name Link
🔨 Latest commit 07b41d4
🔍 Latest deploy log https://app.netlify.com/sites/doist-typist/deploys/67180277cce33d000898636b
😎 Deploy Preview https://deploy-preview-742--doist-typist.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@renovate renovate bot force-pushed the renovate/linters branch 13 times, most recently from 21cf3c9 to 15f7140 Compare April 18, 2024 11:21
@renovate renovate bot changed the title chore(deps): update dependency eslint-plugin-vitest to v0.5.1 chore(deps): update linters Apr 18, 2024
@renovate renovate bot force-pushed the renovate/linters branch 3 times, most recently from 149afa5 to 8252435 Compare April 22, 2024 04:04
@renovate renovate bot force-pushed the renovate/linters branch 9 times, most recently from 02dc8f7 to 080d7a9 Compare May 1, 2024 21:14
@renovate renovate bot force-pushed the renovate/linters branch 8 times, most recently from 1b5931c to 5847698 Compare September 19, 2024 15:28
@renovate renovate bot force-pushed the renovate/linters branch 6 times, most recently from bff9d78 to 8eb5f05 Compare September 30, 2024 03:07
@renovate renovate bot force-pushed the renovate/linters branch 5 times, most recently from b4a2143 to 53c2301 Compare October 1, 2024 19:28
@renovate renovate bot force-pushed the renovate/linters branch 5 times, most recently from d96c05a to 1037340 Compare October 14, 2024 08:33
@renovate renovate bot force-pushed the renovate/linters branch 4 times, most recently from 6a59a8a to e83cb86 Compare October 21, 2024 21:36
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants