Wildcards for recipe enablement #4451
-
I maintain a huge rewrite.yaml with the enabled styles and recipes (1700 lines). Every other week I run rewrite discover and sync the output with my yaml file via BeyondCompare, to have the latest recipes enabled. I'd really like to be able to use wildcards for the recipe selection to shrink the size and to reduce the rate of changes. E.g. Anyone here with similar challenges and wishes? Or would you recommend implementing a simple Java based recipe that does the same via class graph scanning? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @Bananeweizen ; To remain predictable I think it's best we only activate explicit recipes, not recipes matching a particular pattern. What I can offer is a quick look at how we generate our documentation, which might help you automate some of the work you're doing:
Your situation could be even simplier; the key is using |
Beta Was this translation helpful? Give feedback.
Hi @Bananeweizen ; To remain predictable I think it's best we only activate explicit recipes, not recipes matching a particular pattern.
What I can offer is a quick look at how we generate our documentation, which might help you automate some of the work you're doing:
Your situation could be even simplier; the key is using
Environment
to load the recipe modules, and from ther…