Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGitLab Bot <gitlab-bot@gitlab.com>2023-09-08 09:09:24 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2023-09-08 09:09:24 +0300
commitdabcc5d12d22ca30d83c986d6ca0b9b81e7ccbfc (patch)
tree402520b6779be27a17265dd10b978836e7955e53 /doc/development/documentation/testing.md
parent72db8879531eb432b1d3b6957477543d59d94c49 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/development/documentation/testing.md')
-rw-r--r--doc/development/documentation/testing.md16
1 files changed, 15 insertions, 1 deletions
diff --git a/doc/development/documentation/testing.md b/doc/development/documentation/testing.md
index 0c65e008436..c0f1d0028f9 100644
--- a/doc/development/documentation/testing.md
+++ b/doc/development/documentation/testing.md
@@ -507,7 +507,21 @@ To configure markdownlint in your editor, install one of the following as approp
To configure Vale in your editor, install one of the following as appropriate:
-- Sublime Text [`SublimeLinter-vale` package](https://packagecontrol.io/packages/SublimeLinter-vale).
+- Sublime Text [`SublimeLinter-vale` package](https://packagecontrol.io/packages/SublimeLinter-vale). To have Vale
+ suggestions appears as blue instead of red (which is how errors appear), add `vale` configuration to your
+ [SublimeLinter](http://sublimelinter.readthedocs.org) configuration:
+
+ ```json
+ "vale": {
+ "styles": [{
+ "mark_style": "outline",
+ "scope": "region.bluish",
+ "types": ["suggestion"]
+ }]
+ }
+ ```
+
+- [LSP for Sublime Text](https://lsp.sublimetext.io) package [`LSP-vale-ls`](https://packagecontrol.io/packages/LSP-vale-ls).
- Visual Studio Code [`ChrisChinchilla.vale-vscode` extension](https://marketplace.visualstudio.com/items?itemName=ChrisChinchilla.vale-vscode).
You can configure the plugin to [display only a subset of alerts](#show-subset-of-vale-alerts).
- Vim [ALE plugin](https://github.com/dense-analysis/ale).