Post-merge / configure-repo (push) Waiting to run
Post-merge / publish (push) Waiting to run
Post-merge / detect-type (push) Waiting to run
Post-merge / release (push) Waiting to run
Post-merge / sync-wiki (push) Waiting to run
Post-merge / validate-commit-msg (push) Waiting to run
Post-merge / vikunja (push) Waiting to run
Post-merge / badges (push) Waiting to run
52 lines
1.3 KiB
INI
52 lines
1.3 KiB
INI
# Vale configuration for grm documentation
|
|
# https://vale.sh/docs/
|
|
|
|
StylesPath = .vale/styles
|
|
|
|
# Packages are downloaded via `vale sync`
|
|
Packages = write-good, Google, Readability
|
|
|
|
# Minimum alert level to display (suggestion, warning, error)
|
|
MinAlertLevel = warning
|
|
|
|
# Project vocabulary — terms not flagged as spelling errors
|
|
Vocab = grm
|
|
|
|
[*.{md}]
|
|
# Enable style guides
|
|
BasedOnStyles = Vale, write-good, Google, Readability, devx
|
|
|
|
# Google style — relax rules too strict for technical docs
|
|
Google.Contractions = NO
|
|
Google.WordList = NO
|
|
Google.Acronyms = NO
|
|
Google.We = NO
|
|
Google.Will = NO
|
|
Google.Colons = NO
|
|
Google.Headings = NO
|
|
Google.EmDash = NO
|
|
Google.Units = NO
|
|
Google.Latin = NO
|
|
Google.OptionalPlurals = NO
|
|
|
|
# write-good — relax rules too strict for technical writing
|
|
write-good.E-Prime = NO
|
|
write-good.So = NO
|
|
write-good.ThereIs = NO
|
|
write-good.TooWordy = NO
|
|
write-good.Passive = NO
|
|
|
|
# Vale defaults — spelling catches too many technical terms
|
|
Vale.Terms = NO
|
|
Vale.Repetition = NO
|
|
Vale.Spelling = NO
|
|
|
|
# Readability — technical docs are naturally complex, downgrade to suggestions
|
|
Readability.FleschReadingEase = suggestion
|
|
Readability.FleschKincaid = suggestion
|
|
Readability.AutomatedReadability = suggestion
|
|
Readability.ColemanLiau = suggestion
|
|
Readability.LIX = suggestion
|
|
Readability.GunningFog = suggestion
|
|
Readability.SMOG = suggestion
|