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 code style deps #69

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint (source) 9.11.1 -> 9.17.0 age adoption passing confidence
lint-staged 15.2.10 -> 15.3.0 age adoption passing confidence
prettier (source) 3.3.3 -> 3.4.2 age adoption passing confidence

Release Notes

eslint/eslint (eslint)

v9.17.0

Compare Source

v9.16.0

Compare Source

Features

  • 8f70eb1 feat: Add ignoreComputedKeys option in sort-keys rule (#​19162) (Milos Djermanovic)

Documentation

  • 9eefc8f docs: fix typos in use-isnan (#​19190) (루밀LuMir)
  • 0c8cea8 docs: switch the order of words in no-unreachable (#​19189) (루밀LuMir)
  • 0c19417 docs: add missing backtick to no-async-promise-executor (#​19188) (루밀LuMir)
  • 8df9276 docs: add backtick in -0 in description of no-compare-neg-zero (#​19186) (루밀LuMir)
  • 7e16e3f docs: fix caseSensitive option's title of sort-keys (#​19183) (Tanuj Kanti)
  • 0c6b842 docs: fix typos in migration-guide.md (#​19180) (루밀LuMir)
  • 353266e docs: fix a typo in debug.md (#​19179) (루밀LuMir)
  • 5ff318a docs: delete unnecessary horizontal rule(---) in nodejs-api (#​19175) (루밀LuMir)
  • 576bcc5 docs: mark more rules as handled by TypeScript (#​19164) (Tanuj Kanti)
  • 742d054 docs: note that no-restricted-syntax can be used with any language (#​19148) (Milos Djermanovic)

Chores

v9.15.0

Compare Source

v9.14.0

Compare Source

v9.13.0

Compare Source

v9.12.0

Compare Source

Features

Bug Fixes

Documentation

  • ecbd522 docs: Mention code explorer (#​18978) (Nicholas C. Zakas)
  • 7ea4ecc docs: Clarifying the Use of Meta Objects (#​18697) (Amaresh S M)
  • d3e4b2e docs: Clarify how to exclude .js files (#​18976) (Milos Djermanovic)
  • 57232ff docs: Mention plugin-kit in language docs (#​18973) (Nicholas C. Zakas)
  • b80ed00 docs: Update README (GitHub Actions Bot)
  • cb69ab3 docs: Update README (GitHub Actions Bot)
  • 7fb0d95 docs: Update README (GitHub Actions Bot)
  • 493348a docs: Update README (GitHub Actions Bot)
  • 87a582c docs: fix typo in id-match rule (#​18944) (Jay)

Chores

lint-staged/lint-staged (lint-staged)

v15.3.0

Compare Source

Minor Changes
  • #​1495 e69da9e Thanks @​iiroj! - Added more info to the debug logs so that "environment" info doesn't need to be added separately to GitHub issues.

  • #​1493 fa0fe98 Thanks @​iiroj! - Added more help messages around the automatic git stash that lint-staged creates as a backup (by default). The console output also displays the short git hash of the stash so that it's easier to recover lost files in case some fatal errors are encountered, or the process is killed before completing.

    For example:

    % npx lint-staged
    ✔ Backed up original state in git stash (20addf8)
    ✔ Running tasks for staged files...
    ✔ Applying modifications from tasks...
    ✔ Cleaning up temporary files...
    

    where the backup can be seen with git show 20addf8, or git stash list:

    % git stash list
    stash@{0}: lint-staged automatic backup (20addf8)
    

v15.2.11

Compare Source

Patch Changes
  • #​1484 bcfe309 Thanks @​wormsik! - Escape paths containing spaces when using the "shell" option.

  • #​1487 7dd8caa Thanks @​iiroj! - Do not treat submodule root paths as "staged files". This caused lint-staged to fail to a Git error when only updating the revision of a submodule.

prettier/prettier (prettier)

v3.4.2

Compare Source

diff

Treat U+30A0 & U+30FB in Katakana Block as CJK (#​16796 by @​tats-u)

Prettier doesn't treat U+30A0 & U+30FB as Japanese. U+30FB is commonly used in Japanese to represent the delimitation of first and last names of non-Japanese people or “and”. The following “C言語・C++・Go・Rust” means “C language & C++ & Go & Rust” in Japanese.

<!-- Input (--prose-wrap=never) -->

C言
語
・
C++
・
Go
・
Rust

<!-- Prettier 3.4.1 -->
C言語・ C++ ・ Go ・ Rust

<!-- Prettier 3.4.2 -->
C言語・C++・Go・Rust

U+30A0 can be used as the replacement of the - in non-Japanese names (e.g. “Saint-Saëns” (Charles Camille Saint-Saëns) can be represented as “サン゠サーンス” in Japanese), but substituted by ASCII hyphen (U+002D) or U+FF1D (full width hyphen) in many cases (e.g. “サン=サーンス” or “サン=サーンス”).

Fix comments print on class methods with decorators (#​16891 by @​fisker)
// Input
class A {
  @&#8203;decorator
  /** 
   * The method description
   *
  */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.1
class A {
  @&#8203;decorator
  async /**
   * The method description
   *
   */
  method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}

// Prettier 3.4.2
class A {
  @&#8203;decorator
  /**
   * The method description
   *
   */
  async method(foo: Foo, bar: Bar) {
    console.log(foo);
  }
}
Fix non-idempotent formatting (#​16899 by @​seiyab)

This bug fix is not language-specific. You may see similar change in any languages. This fixes regression in 3.4.0 so change caused by it should yield same formatting as 3.3.3.

// Input
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.1 (first)
<div>
  foo
  <span>
    longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo
  </span>, abc
</div>;

// Prettier 3.4.1 (second)
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

// Prettier 3.4.2
<div>
  foo
  <span>longlonglonglonglonglonglonglonglonglonglonglonglonglonglongl foo</span>
  , abc
</div>;

v3.4.1

Compare Source

diff

Remove unnecessary parentheses around assignment in v-on (#​16887 by @​fisker)
<!-- Input -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

<!-- Prettier 3.4.0 -->
<template>
  <button @&#8203;click="(foo += 2)">Click</button>
</template>

<!-- Prettier 3.4.1 -->
<template>
  <button @&#8203;click="foo += 2">Click</button>
</template>

v3.4.0

Compare Source

diff

🔗 Release Notes


Configuration

📅 Schedule: Branch creation - "before 6am on Thursday,before 10am on Sunday" in timezone Europe/Kiev, 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 frontend label May 23, 2024
@renovate renovate bot requested a review from a team as a code owner May 23, 2024 01:08
Copy link
Contributor Author

renovate bot commented May 23, 2024

Branch automerge failure

This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead.

@renovate renovate bot enabled auto-merge (rebase) May 23, 2024 01:09
@renovate renovate bot changed the title chore(deps): update dependency lint-staged to v15.2.4 chore(deps): update dependency lint-staged to v15.2.5 May 25, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch from aefd3bf to 4e9b530 Compare May 25, 2024 21:44
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 4e9b530 to 71e7530 Compare June 1, 2024 21:47
@renovate renovate bot changed the title chore(deps): update dependency lint-staged to v15.2.5 chore(deps): update code style deps Jun 1, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 71e7530 to 284f24e Compare June 5, 2024 21:42
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 284f24e to 1b18477 Compare June 12, 2024 22:03
Copy link

gitstream-cm bot commented Jun 12, 2024

This PR is missing a Jira ticket reference in the title or description.
Please add a Jira ticket reference to the title or description of this PR.

Copy link

gitstream-cm bot commented Jun 12, 2024

🥷 Code experts: slavik-chapelskyi

slavik-chapelskyi has most 👩‍💻 activity in the files.
slavik-chapelskyi has most 🧠 knowledge in the files.

See details

package.json

Activity based on git-commit:

slavik-chapelskyi
JUN
MAY
APR 10 additions & 9 deletions
MAR
FEB
JAN

Knowledge based on git-blame:
slavik-chapelskyi: 16%

To learn more about /:\ gitStream - Visit our Docs

@renovate renovate bot force-pushed the renovate/code-style-deps branch from 1b18477 to cf708ae Compare July 13, 2024 21:38
@renovate renovate bot force-pushed the renovate/code-style-deps branch from cf708ae to add1553 Compare August 3, 2024 23:05
@renovate renovate bot force-pushed the renovate/code-style-deps branch from add1553 to 1d12127 Compare August 14, 2024 22:03
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 1d12127 to 7621ddc Compare September 4, 2024 23:22
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 7621ddc to 974dd19 Compare September 18, 2024 22:12
@renovate renovate bot changed the title chore(deps): update code style deps chore(deps): update code style deps - autoclosed Sep 30, 2024
@renovate renovate bot closed this Sep 30, 2024
auto-merge was automatically disabled September 30, 2024 15:54

Pull request was closed

@renovate renovate bot deleted the renovate/code-style-deps branch September 30, 2024 15:54
@renovate renovate bot restored the renovate/code-style-deps branch October 4, 2024 21:50
@renovate renovate bot changed the title chore(deps): update code style deps - autoclosed chore(deps): update code style deps Oct 4, 2024
@renovate renovate bot reopened this Oct 4, 2024
@renovate renovate bot enabled auto-merge (rebase) October 5, 2024 22:15
@renovate renovate bot changed the title chore(deps): update code style deps chore(deps): update dependency eslint to v9.12.0 Oct 5, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch 2 times, most recently from 8e0358b to 74ab00c Compare October 12, 2024 22:53
@renovate renovate bot changed the title chore(deps): update dependency eslint to v9.12.0 chore(deps): update dependency eslint to v9.13.0 Oct 19, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch 2 times, most recently from 2d83adc to 15d5b5f Compare October 23, 2024 23:15
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 15d5b5f to 54fa5e4 Compare November 2, 2024 22:57
@renovate renovate bot changed the title chore(deps): update dependency eslint to v9.13.0 chore(deps): update dependency eslint to v9.14.0 Nov 2, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 54fa5e4 to b6e00d6 Compare November 17, 2024 01:24
@renovate renovate bot changed the title chore(deps): update dependency eslint to v9.14.0 chore(deps): update dependency eslint to v9.15.0 Nov 17, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch from b6e00d6 to 4091873 Compare November 28, 2024 01:36
@renovate renovate bot changed the title chore(deps): update dependency eslint to v9.15.0 chore(deps): update code style deps Nov 28, 2024
@renovate renovate bot force-pushed the renovate/code-style-deps branch 2 times, most recently from 64319c6 to ba25061 Compare December 5, 2024 00:49
@renovate renovate bot force-pushed the renovate/code-style-deps branch 2 times, most recently from 7142a1f to 43cd901 Compare December 15, 2024 01:00
@renovate renovate bot force-pushed the renovate/code-style-deps branch from 43cd901 to 42c2cf3 Compare December 29, 2024 00:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Development

Successfully merging this pull request may close these issues.

0 participants