chore(deps): update dependency eslint-plugin-prettier to v5 #6

Open
renovate-bot wants to merge 1 commit from renovate/eslint-plugin-prettier-5.x into master
Collaborator

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
eslint-plugin-prettier 4.2.1 -> 5.1.3 age adoption passing confidence

Release Notes

prettier/eslint-plugin-prettier (eslint-plugin-prettier)

v5.1.3

Compare Source

Patch Changes

v5.1.2

Compare Source

Patch Changes
  • #​623 8210e44 Thanks @​BPScott! - Add exports mapping to package.json, to allow import eslintPluginRecommended from 'eslint-plugin-prettier/recommended' to work as expected.

    Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days.

  • #​621 2b09e7f Thanks @​JounQin! - feat: support parsing markdown via eslint-mdx natively

    What means the following is unnecessary anymore when using with eslint-mdx/eslint-plugin-mdx!

    [
      {
        files: ["**/*.md"],
        rules: { "prettier/prettier": ["error", { parser: "markdown" }] },
      },
      {
        files: ["**/*.mdx"],
        rules: { "prettier/prettier": ["error", { parser: "mdx" }] },
      },
    ]
    

v5.1.1

Compare Source

Patch Changes

v5.1.0

Compare Source

Minor Changes
  • #​616 3856413 Thanks @​BPScott! - Add recommended config for the flat config format.

    If you are using flat config, import the recommended config from eslint-plugin-prettier/recommended. Like the legacy format recommended config, this automatically includes the contents of eslint-config-prettier.

    // eslint.config.js
    const eslintPluginPrettierRecommended = require("eslint-plugin-prettier/recommended");
    
    module.exports = [
      // Any other config imports go at the top
      eslintPluginPrettierRecommended,
    ];
    
Patch Changes
  • #​614 5270877 Thanks @​BPScott! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config

  • #​603 a63a570 Thanks @​filiptammergard! - fix: specify eslint-config-prettier as peer dependency

    It's already added to peerDependenciesMeta as optional, which means it should also be specified in peerDependencies.

v5.0.1

Compare Source

Patch Changes

v5.0.0

Compare Source

Major Changes
Minor Changes
Patch Changes

Configuration

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

🚦 Automerge: Enabled.

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.


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

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | [`4.2.1` -> `5.1.3`](https://renovatebot.com/diffs/npm/eslint-plugin-prettier/4.2.1/5.1.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-prettier/5.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-prettier/5.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-prettier/4.2.1/5.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-prettier/4.2.1/5.1.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>prettier/eslint-plugin-prettier (eslint-plugin-prettier)</summary> ### [`v5.1.3`](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#513) [Compare Source](https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.2...v5.1.3) ##### Patch Changes - [#&#8203;629](https://github.com/prettier/eslint-plugin-prettier/pull/629) [`985b33c`](https://github.com/prettier/eslint-plugin-prettier/commit/985b33c56f146b2e65ae391a3af57f63b07ecbdf) Thanks [@&#8203;JounQin](https://github.com/JounQin)! - chore: add `package.json` into `exports` map ### [`v5.1.2`](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#512) [Compare Source](https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.1...v5.1.2) ##### Patch Changes - [#&#8203;623](https://github.com/prettier/eslint-plugin-prettier/pull/623) [`8210e44`](https://github.com/prettier/eslint-plugin-prettier/commit/8210e44309b168c7c06185eae8249b2d0eb65815) Thanks [@&#8203;BPScott](https://github.com/BPScott)! - Add exports mapping to package.json, to allow `import eslintPluginRecommended from 'eslint-plugin-prettier/recommended'` to work as expected. Strictly speaking this is a breaking change as it removes the ability for people to import from "eslint-plugin-prettier/eslint-plugin-prettier.js" and "eslint-plugin-prettier/recommended.js" but the former was never recommended in the first place and the latter has only been available for a few days. - [#&#8203;621](https://github.com/prettier/eslint-plugin-prettier/pull/621) [`2b09e7f`](https://github.com/prettier/eslint-plugin-prettier/commit/2b09e7fc64f38297c8ca39d087dba1f122ef999c) Thanks [@&#8203;JounQin](https://github.com/JounQin)! - feat: support parsing `markdown` via `eslint-mdx` natively What means the following is unnecessary anymore when using with `eslint-mdx`/`eslint-plugin-mdx`! ```json5 [ { files: ["**/*.md"], rules: { "prettier/prettier": ["error", { parser: "markdown" }] }, }, { files: ["**/*.mdx"], rules: { "prettier/prettier": ["error", { parser: "mdx" }] }, }, ] ``` ### [`v5.1.1`](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#511) [Compare Source](https://github.com/prettier/eslint-plugin-prettier/compare/v5.1.0...v5.1.1) ##### Patch Changes - [#&#8203;619](https://github.com/prettier/eslint-plugin-prettier/pull/619) [`b5c0dc5`](https://github.com/prettier/eslint-plugin-prettier/commit/b5c0dc5715616a0f2a0da8b8c077434efc618a3e) Thanks [@&#8203;JounQin](https://github.com/JounQin)! - chore: skip formatting inline scripts in pug files ### [`v5.1.0`](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#510) [Compare Source](https://github.com/prettier/eslint-plugin-prettier/compare/v5.0.1...v5.1.0) ##### Minor Changes - [#&#8203;616](https://github.com/prettier/eslint-plugin-prettier/pull/616) [`3856413`](https://github.com/prettier/eslint-plugin-prettier/commit/3856413420d3d026e5ae84f29c4bd0d558697135) Thanks [@&#8203;BPScott](https://github.com/BPScott)! - Add recommended config for the flat config format. If you are using flat config, import the recommended config from `eslint-plugin-prettier/recommended`. Like the legacy format recommended config, this automatically includes the contents of `eslint-config-prettier`. ```js // eslint.config.js const eslintPluginPrettierRecommended = require("eslint-plugin-prettier/recommended"); module.exports = [ // Any other config imports go at the top eslintPluginPrettierRecommended, ]; ``` ##### Patch Changes - [#&#8203;614](https://github.com/prettier/eslint-plugin-prettier/pull/614) [`5270877`](https://github.com/prettier/eslint-plugin-prettier/commit/5270877d169bec05449861c8ad7e6338b0ad47c0) Thanks [@&#8203;BPScott](https://github.com/BPScott)! - Add meta block to plugin. This improves debugging and cachebusting when using the new flat config - [#&#8203;603](https://github.com/prettier/eslint-plugin-prettier/pull/603) [`a63a570`](https://github.com/prettier/eslint-plugin-prettier/commit/a63a570f8f3e3d53b90b1cf35e06fd7e3c387a5a) Thanks [@&#8203;filiptammergard](https://github.com/filiptammergard)! - fix: specify `eslint-config-prettier` as peer dependency It's already added to `peerDependenciesMeta` as optional, which means it should also be specified in `peerDependencies`. ### [`v5.0.1`](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#501) [Compare Source](https://github.com/prettier/eslint-plugin-prettier/compare/v5.0.0...v5.0.1) ##### Patch Changes - [#&#8203;588](https://github.com/prettier/eslint-plugin-prettier/pull/588) [`21a7146`](https://github.com/prettier/eslint-plugin-prettier/commit/21a7146d78161307dcc7eaa96f41dac51f7ce89f) Thanks [@&#8203;krist7599555](https://github.com/krist7599555)! - fix: `parserPath` type might be `undefined` on Eslint Falt Config ### [`v5.0.0`](https://github.com/prettier/eslint-plugin-prettier/blob/HEAD/CHANGELOG.md#500) [Compare Source](https://github.com/prettier/eslint-plugin-prettier/compare/v4.2.1...v5.0.0) ##### Major Changes - [#&#8203;508](https://github.com/prettier/eslint-plugin-prettier/pull/508) [`910aeb6`](https://github.com/prettier/eslint-plugin-prettier/commit/910aeb60a7456beb6193c634bb8dec1b7181312d) Thanks [@&#8203;JounQin](https://github.com/JounQin)! - feat!: bump peer eslint to ">=8.0.0" and node to "^14.18.0 || >=16.0.0" - [#&#8203;508](https://github.com/prettier/eslint-plugin-prettier/pull/508) [`910aeb6`](https://github.com/prettier/eslint-plugin-prettier/commit/910aeb60a7456beb6193c634bb8dec1b7181312d) Thanks [@&#8203;JounQin](https://github.com/JounQin)! - feat!: upgrade to prettier v3 ##### Minor Changes - [#&#8203;508](https://github.com/prettier/eslint-plugin-prettier/pull/508) [`910aeb6`](https://github.com/prettier/eslint-plugin-prettier/commit/910aeb60a7456beb6193c634bb8dec1b7181312d) Thanks [@&#8203;JounQin](https://github.com/JounQin)! - feat: add typings support ##### Patch Changes - [#&#8203;548](https://github.com/prettier/eslint-plugin-prettier/pull/548) [`82a3db8`](https://github.com/prettier/eslint-plugin-prettier/commit/82a3db878baf1a8f8ef53393069fe23c3a80ce15) Thanks [@&#8203;fisker](https://github.com/fisker)! - fix: add missing dependency `synckit` - [#&#8203;564](https://github.com/prettier/eslint-plugin-prettier/pull/564) [`ae7a73c`](https://github.com/prettier/eslint-plugin-prettier/commit/ae7a73c6c4b306c617c5dd9baaaa2ae7c0f9f44b) Thanks [@&#8203;auvred](https://github.com/auvred)! - fix: compatibility with prettier@3 without plugins </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNTkuNyIsInVwZGF0ZWRJblZlciI6IjM2LjU3LjQiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIifQ==-->
renovate-bot added 1 commit 2023-07-11 11:00:59 +02:00
Some checks failed
ci/woodpecker/push/checks Pipeline failed
d17f683eea
chore(deps): update dependency eslint-plugin-prettier to v5
Author
Collaborator

Branch automerge failure

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


  • Branch has one or more failed status checks
### Branch automerge failure This PR was configured for branch automerge. However, this is not possible, so it has been raised as a PR instead. ___ * Branch has one or more failed status checks
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d17f683eea to 79a0e1af52 2023-07-14 19:01:20 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 79a0e1af52 to d0467e75e3 2023-07-15 12:03:31 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d0467e75e3 to b71e8e4648 2023-07-17 03:01:28 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b71e8e4648 to be8357f617 2023-07-17 14:02:39 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from be8357f617 to f430d048ca 2023-07-19 09:02:33 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f430d048ca to 0881209cf0 2023-07-27 05:03:31 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0881209cf0 to 48a6fb5b05 2023-07-27 15:01:41 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 48a6fb5b05 to cce339312c 2023-07-28 18:01:43 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from cce339312c to 86405537d2 2023-07-28 20:01:43 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 86405537d2 to abeb70ee90 2023-07-31 03:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from abeb70ee90 to 9235459e06 2023-08-03 10:02:21 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9235459e06 to 0596f919bb 2023-08-03 13:01:40 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0596f919bb to affdc6db5d 2023-08-04 15:01:46 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from affdc6db5d to 40b42fd123 2023-08-05 23:01:35 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 40b42fd123 to 93e75ec2c1 2023-08-07 03:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 93e75ec2c1 to bb1da5a3e5 2023-08-08 18:01:37 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from bb1da5a3e5 to 24262e6ebc 2023-08-09 13:03:08 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 24262e6ebc to 8b567af241 2023-08-09 14:01:38 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 8b567af241 to be3bc31b3a 2023-08-10 09:01:45 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from be3bc31b3a to a7f6b32633 2023-08-11 19:02:35 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a7f6b32633 to 89c7a5b429 2023-08-13 20:01:10 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 89c7a5b429 to 00e51dd312 2023-08-14 00:01:18 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 00e51dd312 to 526cf0b899 2023-08-14 03:01:13 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 526cf0b899 to ff010a847b 2023-08-17 23:02:53 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ff010a847b to 1df2559838 2023-08-19 12:01:48 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1df2559838 to 0f7b99987a 2023-08-21 03:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0f7b99987a to 6fd8b8a376 2023-08-21 13:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6fd8b8a376 to b4d464c672 2023-08-22 09:01:46 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b4d464c672 to 3025826bfb 2023-08-24 02:01:13 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 3025826bfb to 8ff36ae8d3 2023-08-26 00:01:07 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 8ff36ae8d3 to 6ae0c1c2f2 2023-08-27 15:01:07 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6ae0c1c2f2 to 6968d977b1 2023-08-27 17:01:49 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6968d977b1 to 22c1e59ec8 2023-08-27 18:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 22c1e59ec8 to 0b2bf4f814 2023-08-27 23:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0b2bf4f814 to 7b6b961465 2023-08-28 03:01:27 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7b6b961465 to e2d4f81538 2023-08-28 04:01:10 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e2d4f81538 to d3ebafdab4 2023-09-04 03:01:08 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d3ebafdab4 to 653820f7ea 2023-09-06 09:01:09 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 653820f7ea to 314dca61f6 2023-09-07 16:01:05 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 314dca61f6 to f933f1ac8c 2023-09-09 00:01:54 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f933f1ac8c to 365690af1a 2023-09-09 02:02:07 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 365690af1a to 532ff50a3d 2023-09-09 03:01:02 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 532ff50a3d to 3c62bc659f 2023-09-10 10:01:11 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 3c62bc659f to 9b60703c97 2023-09-11 03:00:58 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9b60703c97 to 1ae7493736 2023-09-11 04:00:57 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1ae7493736 to 4b425b1aae 2023-09-15 23:01:26 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4b425b1aae to 7b90e6dfde 2023-09-18 03:01:04 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7b90e6dfde to b2869fe6c2 2023-09-23 01:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b2869fe6c2 to d473b38613 2023-09-24 09:01:58 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d473b38613 to 15ed5b8522 2023-09-25 03:01:11 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 15ed5b8522 to ffa2dd25b1 2023-09-26 00:01:17 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ffa2dd25b1 to 471e2191b9 2023-09-26 02:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 471e2191b9 to 8b220a3cb4 2023-09-27 10:01:08 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 8b220a3cb4 to 28866d5a29 2023-09-28 09:01:07 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 28866d5a29 to 1a47229eaa 2023-09-28 21:01:11 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1a47229eaa to 033ae6e1d5 2023-10-02 03:01:03 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 033ae6e1d5 to eab967535d 2023-10-04 02:01:09 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from eab967535d to dcbe67a8a7 2023-10-04 13:01:09 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from dcbe67a8a7 to 0d02bfd439 2023-10-05 19:01:20 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0d02bfd439 to 64101e5995 2023-10-06 16:01:04 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 64101e5995 to 9b17b8480c 2023-10-06 18:01:05 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9b17b8480c to 0d18f217d9 2023-10-07 00:01:16 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0d18f217d9 to 8c61cbef5c 2023-10-09 03:01:09 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 8c61cbef5c to b33500257c 2023-10-11 05:01:20 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b33500257c to e66cafd110 2023-10-14 09:01:22 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e66cafd110 to 3cba8c21d7 2023-10-14 16:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 3cba8c21d7 to c0e7b85037 2023-10-14 22:01:10 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c0e7b85037 to de911bae02 2023-10-15 10:01:29 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from de911bae02 to 4a0d09d71f 2023-10-15 11:01:11 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4a0d09d71f to 97e7f3b4db 2023-10-15 21:01:10 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 97e7f3b4db to bcea054286 2023-10-16 03:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from bcea054286 to fef70f69ed 2023-10-16 08:01:13 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from fef70f69ed to dc6f5ac9dd 2023-10-18 18:01:20 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from dc6f5ac9dd to a1df9d7fcf 2023-10-19 14:01:03 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a1df9d7fcf to 978821c74e 2023-10-20 16:02:22 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 978821c74e to aa0c930912 2023-10-20 17:01:10 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from aa0c930912 to 51b619cf8d 2023-10-21 01:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 51b619cf8d to 7a8276fca2 2023-10-23 03:01:34 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7a8276fca2 to 7acb8063ef 2023-10-25 13:01:42 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7acb8063ef to d536782765 2023-10-26 11:01:51 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d536782765 to 7f791b32d1 2023-10-27 06:01:42 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7f791b32d1 to e1cfddc5d7 2023-10-28 13:02:33 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e1cfddc5d7 to c6941254a4 2023-10-30 02:01:33 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c6941254a4 to 2fb30366f4 2023-10-31 04:01:49 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 2fb30366f4 to d3caa58309 2023-10-31 08:01:43 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d3caa58309 to 2aba9ebcc1 2023-10-31 11:01:51 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 2aba9ebcc1 to 676598eb1d 2023-11-03 23:02:14 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 676598eb1d to c72e632063 2023-11-04 02:02:06 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c72e632063 to 92a32c44a6 2023-11-06 02:01:47 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 92a32c44a6 to 1ea2a137d9 2023-11-08 00:01:37 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1ea2a137d9 to 85e27e8af8 2023-11-10 08:01:21 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 85e27e8af8 to 9f033d4646 2023-11-11 10:01:41 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9f033d4646 to 5dbb5fe9dd 2023-11-11 18:01:55 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 5dbb5fe9dd to eaa76617ff 2023-11-12 07:02:22 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from eaa76617ff to 1d36cf5622 2023-11-12 10:01:34 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1d36cf5622 to 56a4c8807f 2023-11-13 02:02:03 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 56a4c8807f to 06b7b8d3cb 2023-11-13 03:02:10 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 06b7b8d3cb to 17c4c02ea7 2023-11-14 08:01:10 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 17c4c02ea7 to 81ae2e2a3d 2023-11-14 21:01:08 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 81ae2e2a3d to 018d6b77f9 2023-11-16 11:01:48 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 018d6b77f9 to ad0a5aa0e0 2023-11-18 00:02:16 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ad0a5aa0e0 to cc9530b4ff 2023-11-18 08:02:25 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from cc9530b4ff to 75dd19ec94 2023-11-20 02:02:19 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 75dd19ec94 to a33b9bb86c 2023-11-21 05:01:56 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a33b9bb86c to c9b4873a15 2023-11-21 23:01:34 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c9b4873a15 to dc6bb8f43a 2023-11-24 09:03:12 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from dc6bb8f43a to b67e60e916 2023-11-26 16:01:50 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b67e60e916 to bae143090f 2023-11-27 02:02:23 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from bae143090f to 7332a09b7a 2023-11-28 03:01:34 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7332a09b7a to 48b8b8b986 2023-11-30 08:03:00 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 48b8b8b986 to a424be41af 2023-12-02 00:02:32 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a424be41af to 72f2cd333d 2023-12-02 12:02:30 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 72f2cd333d to 50b99562e7 2023-12-03 20:02:01 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 50b99562e7 to 03ec499a2c 2023-12-04 02:01:53 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 03ec499a2c to 2a3de78128 2023-12-08 10:02:46 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 2a3de78128 to aaecd9e6f7 2023-12-11 02:02:14 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from aaecd9e6f7 to 2deeea64e0 2023-12-11 09:02:38 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 2deeea64e0 to 55aba2ee68 2023-12-13 12:03:03 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 55aba2ee68 to d708429381 2023-12-16 01:01:51 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d708429381 to 95df99f0b4 2023-12-17 09:02:44 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 95df99f0b4 to 9a99a0f486 2023-12-18 02:02:32 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9a99a0f486 to a79be93e5c 2023-12-19 23:01:48 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a79be93e5c to cfb9478beb 2023-12-21 18:01:32 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from cfb9478beb to 58ac2a14a7 2023-12-24 07:02:08 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 58ac2a14a7 to 9bc97f04fd 2023-12-25 02:02:00 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9bc97f04fd to 03c5d9c27d 2024-01-10 05:02:32 +01:00 Compare
Some required checks are missing.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/eslint-plugin-prettier-5.x:renovate/eslint-plugin-prettier-5.x
git checkout renovate/eslint-plugin-prettier-5.x
Sign in to join this conversation.
No reviewers
No labels
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: saluu/darkness-dependent-vision#6
No description provided.