Updating repo.

This commit is contained in:
g_it 2026-04-09 10:13:57 +02:00
commit 73ec0e4433
Signed by untrusted user who does not match committer: g_it
GPG key ID: A2B0A7C06A054627
2 changed files with 19 additions and 4 deletions

Binary file not shown.

View file

@ -1,11 +1,26 @@
# Vale # Vale
My Vale package for customized linting rules. The style can be added as a package by make the `.vale.ini` in the root of the project: ![Vale](https://img.shields.io/badge/Vale-45A1FC?style=flat&logo=LanguageTool&logoColor=white) ![Markdown](https://img.shields.io/badge/Markdown-000000?style=flat&logo=Markdown&logoColor=white) ![Shell](https://img.shields.io/badge/zsh-F15A24?style=flat&logo=zsh&logoColor=white) ![YAML](https://img.shields.io/badge/YAML-CB171E?style=flat&logo=YAML&logoColor=white)
My personal Vale package for customized linting rules. External styles can be added as a package to the `.vale.ini` in the root of the project:
```toml ```toml
MinAlertLevel = suggestion StylesPath = styles
Packages = https://git.gugulet.hu/g_it/vale/raw/branch/main/gugulet-hu.zip Packages = Google, Readability, write-good, proselint
[*.md] [*.{adoc,html,md}]
BasedOnStyles = Google, Readability, write-good, proselint
gugulet-hu = YES
```
The repo contents are auto-zipped on every commit to create the package zip. Use the package with this ini config in a project:
```toml
StylesPath = .vale
MinAlertLevel = warning
Packages = https://gugulet.hu/technical/git/g_it/vale/raw/branch/main/gugulet-hu.zip
[*.{adoc,html,md}]
BasedOnStyles = Google, Readability, write-good, proselint
gugulet-hu = YES gugulet-hu = YES
``` ```