Skip to content

Commit

Permalink
docs: update vale.sh links (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
Amar1729 authored Nov 13, 2023
1 parent b8fd44e commit 65eda7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/BUILTINS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2268,7 +2268,7 @@ local sources = { null_ls.builtins.diagnostics.vale }

#### Notes

- vale does not include a syntax by itself, so you probably need to grab a `vale.ini` (at `~/.vale.ini`) and a StylesPath (somewhere, pointed from `vale.ini`) from [the list of configurations](https://docs.errata.ai/vale/about#open-source-configurations).
- vale doesn't include a syntax by itself, so you need to [create a `vale.ini`](https://vale.sh/generator)) and download [styles](https://vale.sh/docs/vale-cli/structure/#styles) with `vale sync`.

### [verilator](https://www.veripool.org/verilator/)

Expand Down
4 changes: 2 additions & 2 deletions lua/null-ls/builtins/diagnostics/vale.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ local severities = { error = 1, warning = 2, suggestion = 4 }
return h.make_builtin({
name = "vale",
meta = {
url = "https://docs.errata.ai/vale/about",
url = "https://vale.sh/",
description = "Syntax-aware linter for prose built with speed and extensibility in mind.",
notes = {
[[vale does not include a syntax by itself, so you probably need to grab a `vale.ini` (at `~/.vale.ini`) and a StylesPath (somewhere, pointed from `vale.ini`) from [the list of configurations](https://docs.errata.ai/vale/about#open-source-configurations).]],
[[vale doesn't include a syntax by itself, so you need to [create a `vale.ini`](https://vale.sh/generator)) and download [styles](https://vale.sh/docs/vale-cli/structure/#styles) with `vale sync`.]],
},
},
method = DIAGNOSTICS,
Expand Down

0 comments on commit 65eda7e

Please sign in to comment.