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

Open
renovate-bot wants to merge 1 commits from renovate/eslint-plugin-prettier-5.x into main
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:eyJjcmVhdGVkSW5WZXIiOiIzNS4xNTkuNyIsInVwZGF0ZWRJblZlciI6IjM2LjU3LjQiLCJ0YXJnZXRCcmFuY2giOiJtYWluIn0=-->
renovate-bot added 1 commit 2023-07-12 11:00:56 +02:00
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c3ab4c5a4c to e6bb9eb9e3 2023-07-14 09:01:37 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e6bb9eb9e3 to 3d45e414cf 2023-07-15 21:01:25 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 3d45e414cf to 3ea52ff69b 2023-07-17 00:01:22 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 3ea52ff69b to 46a61734e6 2023-07-19 16:01:26 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 46a61734e6 to 65368fac0f 2023-07-20 18:02:05 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 65368fac0f to 786280af16 2023-07-20 19:01:27 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 786280af16 to 28ae76b277 2023-07-28 07:01:42 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 28ae76b277 to 8b75ca3a0d 2023-07-28 08:01:20 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 8b75ca3a0d to fd6ac8707d 2023-07-29 11:01:39 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from fd6ac8707d to c07adcd9c7 2023-07-30 14:01:33 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c07adcd9c7 to 133577657b 2023-07-30 15:01:22 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 133577657b to ef5a677104 2023-08-02 11:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ef5a677104 to 7bb7ae1b21 2023-08-04 05:01:19 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7bb7ae1b21 to cce6917bb2 2023-08-05 08:01:16 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from cce6917bb2 to 6396d820de 2023-08-07 01:01:21 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6396d820de to e9d37f3fa6 2023-08-09 13:02:36 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e9d37f3fa6 to ae81a14192 2023-08-10 16:01:41 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ae81a14192 to a5e6f8daa6 2023-08-11 19:02:03 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a5e6f8daa6 to 88140fffb0 2023-08-11 20:01:17 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 88140fffb0 to 896e7521fe 2023-08-12 23:03:33 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 896e7521fe to e2e5caeac2 2023-08-17 13:01:49 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e2e5caeac2 to de69f5032b 2023-08-19 01:02:26 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from de69f5032b to bb1eeee64b 2023-08-19 02:01:46 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from bb1eeee64b to e1508480b6 2023-08-20 14:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e1508480b6 to 4498553d88 2023-08-25 04:00:55 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4498553d88 to b0da8e94a9 2023-08-26 21:01:32 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b0da8e94a9 to af75e98040 2023-08-28 00:01:26 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from af75e98040 to 03286f1843 2023-08-29 03:01:07 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 03286f1843 to 0b17ab59e4 2023-08-29 04:00:54 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0b17ab59e4 to 1b1b817ef8 2023-08-31 19:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1b1b817ef8 to 6c540f2158 2023-09-02 09:00:54 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6c540f2158 to 4aaeba08cf 2023-09-08 08:01:05 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4aaeba08cf to f1d7c4ff56 2023-09-09 11:01:11 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f1d7c4ff56 to 4b4e5526c1 2023-09-10 14:01:27 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4b4e5526c1 to f655e8dfe5 2023-09-10 15:01:09 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f655e8dfe5 to ec9c120954 2023-09-10 16:01:13 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ec9c120954 to e7f54e7f73 2023-09-12 21:00:57 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e7f54e7f73 to 43466e5c63 2023-09-16 13:01:02 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 43466e5c63 to 201f5050ae 2023-09-20 04:01:03 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 201f5050ae to 946ff3e212 2023-09-23 09:01:11 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 946ff3e212 to 0ab512af8d 2023-09-24 12:01:19 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0ab512af8d to 9884410d6f 2023-09-25 15:00:52 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9884410d6f to 37a7f16790 2023-09-26 21:01:04 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 37a7f16790 to c5c40a44c3 2023-09-28 08:01:42 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c5c40a44c3 to f23f9df6a8 2023-09-29 11:01:02 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f23f9df6a8 to 4ac8cefd26 2023-09-30 14:01:06 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4ac8cefd26 to 4eadf876e0 2023-10-02 21:01:12 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4eadf876e0 to c4d656bc4d 2023-10-05 04:01:12 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c4d656bc4d to 1725006bd6 2023-10-06 07:01:18 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 1725006bd6 to 59d67de9cf 2023-10-07 09:01:15 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 59d67de9cf to 8de1069bcf 2023-10-08 12:01:08 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 8de1069bcf to b809a4a32b 2023-10-11 05:01:01 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b809a4a32b to 6e4346389f 2023-10-14 10:01:18 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6e4346389f to b014eb18d0 2023-10-15 18:01:41 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b014eb18d0 to 6bf3be51d0 2023-10-17 10:00:56 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6bf3be51d0 to 4081f71304 2023-10-19 20:01:00 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4081f71304 to e7cdc8c97c 2023-10-21 18:01:47 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e7cdc8c97c to b42083122d 2023-10-22 21:01:22 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b42083122d to 4de24de578 2023-10-22 22:01:08 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 4de24de578 to 53f5b11e3a 2023-10-25 18:01:05 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 53f5b11e3a to 278f7148eb 2023-10-27 13:01:03 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 278f7148eb to 6be0556dd1 2023-10-28 16:01:03 +02:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 6be0556dd1 to f130f29dce 2023-10-29 18:01:20 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f130f29dce to 17b6eb897f 2023-11-01 06:01:11 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 17b6eb897f to 0877ccdee3 2023-11-02 09:01:10 +01:00 Compare
asdil1991 requested review from saluu 2023-11-03 19:33:38 +01:00
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0877ccdee3 to c41d380e63 2023-11-05 01:01:01 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c41d380e63 to 11955c37f4 2023-11-05 23:01:14 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 11955c37f4 to 13d5854ddc 2023-11-06 00:01:20 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 13d5854ddc to 0253626307 2023-11-07 03:00:53 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0253626307 to a0c1b9e74a 2023-11-09 02:00:56 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from a0c1b9e74a to 95fc81226a 2023-11-12 07:01:47 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 95fc81226a to 00a2f87d26 2023-11-13 12:01:06 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 00a2f87d26 to ebeb61e768 2023-11-15 17:00:47 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ebeb61e768 to c9eb50ed0e 2023-11-17 12:01:15 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c9eb50ed0e to 87bf33880b 2023-11-18 15:01:39 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 87bf33880b to cc217f88d4 2023-11-19 18:00:58 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from cc217f88d4 to b8dc0c49f1 2023-11-22 06:01:20 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from b8dc0c49f1 to 7001747a37 2023-11-23 08:01:35 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 7001747a37 to 51ac188434 2023-11-25 11:00:58 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 51ac188434 to 9f5701b597 2023-11-27 18:01:29 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9f5701b597 to 09f0a561fc 2023-11-29 05:01:22 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 09f0a561fc to c219fd7ecd 2023-12-01 10:01:28 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from c219fd7ecd to 262cc20dfb 2023-12-02 13:01:41 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 262cc20dfb to d82eb3971e 2023-12-03 16:01:16 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d82eb3971e to 185166cbf4 2023-12-03 17:01:04 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 185166cbf4 to d7f1bcad46 2023-12-07 11:01:09 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from d7f1bcad46 to ec4d7166a6 2023-12-09 11:01:27 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from ec4d7166a6 to caeab4742c 2023-12-12 10:01:02 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from caeab4742c to 9b15593ffe 2023-12-14 14:01:08 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9b15593ffe to 80eb043d87 2023-12-17 03:01:30 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 80eb043d87 to f9e7f174c9 2023-12-18 10:01:34 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from f9e7f174c9 to 9e0aaee794 2023-12-19 13:01:36 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 9e0aaee794 to 3036973910 2023-12-19 23:01:25 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 3036973910 to e2c899a095 2023-12-21 18:01:13 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from e2c899a095 to 0ebcf92e14 2023-12-24 07:01:35 +01:00 Compare
renovate-bot force-pushed renovate/eslint-plugin-prettier-5.x from 0ebcf92e14 to 08353d296a 2024-01-10 05:02:13 +01:00 Compare
Some required checks are missing.
You are not authorized to merge this pull request.
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
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: dungeonslayers/tickwerk#13
No description provided.