26 lines
1 KiB
Markdown
26 lines
1 KiB
Markdown
# Vale
|
|
|
|
   
|
|
|
|
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
|
|
StylesPath = styles
|
|
Packages = Google, Readability, write-good, proselint
|
|
|
|
[*.{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
|
|
```
|