Vale is an open source prose linter that can check the content of documents in several formats against style guide rules. The goal of a prose linter is automating style guide checks in docs-as-code environments, so that style issues are detected before deploy or while editing documentation in a code editor.
This repo contains a set of linting rules for Vale based on the Elastic style guide and recommendations.
Run these commands to install the Elastic style guide locally:
macOS:
curl -fsSL https://raw.githubusercontent.com/elastic/vale-rules/main/install-macos.sh | bashLinux:
curl -fsSL https://raw.githubusercontent.com/elastic/vale-rules/main/install-linux.sh | bashWindows (PowerShell):
Invoke-WebRequest -Uri https://raw.githubusercontent.com/elastic/vale-rules/main/install-windows.ps1 -OutFile install-windows.ps1
powershell -ExecutionPolicy Bypass -File .\install-windows.ps1Install the Vale VSCode extension to view Vale checks when saving a document.
Add the Elastic Vale linter to your repository's CI/CD pipeline using a two-workflow setup that supports fork PRs:
# .github/workflows/vale-lint.yml
name: Vale Documentation Linting
on:
pull_request:
paths:
- '**.md'
- '**.adoc'
permissions:
contents: read
jobs:
vale:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Run Vale Linter
uses: elastic/vale-rules/lint@main# .github/workflows/vale-report.yml
name: Vale Report
on:
workflow_run:
workflows: ["Vale Documentation Linting"]
types:
- completed
permissions:
pull-requests: read
jobs:
report:
runs-on: ubuntu-latest
if: github.event.workflow_run.event == 'pull_request'
permissions:
pull-requests: write
steps:
- name: Post Vale Results
uses: elastic/vale-rules/report@main
with:
github_token: ${{ secrets.GITHUB_TOKEN }}This two-workflow approach ensures fork PRs are linted safely while still posting results as PR comments.
Refer to ACTION_USAGE.md for detailed documentation and examples.
action.yml- GitHub Action definition for using this as a reusable actionACTION_USAGE.md- Detailed documentation for using the GitHub Actioninstall-macos.sh- Automated installation script for macOSinstall-linux.sh- Automated installation script for Linuxinstall-windows.ps1- Automated installation script for Windowsstyles/Elastic/- Contains the Elastic linting rules for Vale. See Styles.github/workflows/- CI/CD workflows for testing and releases
The installation scripts create Vale configurations at platform-specific locations:
macOS:
~/Library/Application Support/vale/.vale.ini- Vale configuration file~/Library/Application Support/vale/styles/Elastic/- Elastic style rules
Linux:
~/.config/vale/.vale.ini- Vale configuration file~/.local/share/vale/styles/Elastic/- Elastic style rules
Windows:
%LOCALAPPDATA%\vale\.vale.ini- Vale configuration file%LOCALAPPDATA%\vale\styles\Elastic\- Elastic style rules
To update to the latest style guide rules, rerun the installation script.
To create a new release of the Vale package:
- Update the version and make your changes.
- Commit and push your changes to the main branch.
- Create and push a version tag:
git tag v1.0.1
git push origin v1.0.1The GitHub workflow automatically:
- Adds a VERSION file to the Elastic style directory.
- Packages the
.vale.iniandstyles/folder intoelastic-vale.zip(a Vale complete package). - Creates a new GitHub release with the version tag.
- Uploads the package as a release asset.
Users can then install or update to this version using the installation scripts or by running vale sync. The packaged .vale.ini ensures everyone gets the same configuration settings (SkippedScopes, IgnoredScopes, TokenIgnores, etc.).
This software is licensed under the Apache License 2.0. Refer to the LICENSE file for details.
Analyse the things aka the commas!