-
I'm looking to create regular releases the Vale style in https://github.com/grafana/writers-toolkit/tree/main/vale/Grafana but I'm struggling to find the correct archive file structure so that the external script in Reading https://vale.sh/docs/topics/packages/#complete, I believe the format should be:
Where
However, when I use
What is the correct layout to package up a style with its supporting scripts and dictionaries? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
In +v3.0, all non-style resources are store under $ tree -a MyPackage
MyPackage
├── .vale.ini
└── styles
├── MyStyle
│ └── MyRule.yml
└── config
├── dictionaries
│ └── MyDic.dic
├── scripts
│ └── MyScript.tengo
└── vocabularies
└── MyVocab
├── accept.txt
└── reject.txt I will add an example to the docs. |
Beta Was this translation helpful? Give feedback.
In +v3.0, all non-style resources are store under
<StylesPath>/config
:I will add an example to the docs.