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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorEvan Read <eread@gitlab.com>2022-11-24 19:15:29 +0300
committerMarcel Amirault <mamirault@gitlab.com>2022-11-24 19:15:29 +0300
commit95a5390f185351f20081097da18c6f364ce96f8a (patch)
tree3abfa607e5aadd0af15bc2a982a84aa3fe4840af /doc
parent9c61332c3ceaa6e03aa264f7f3b394afbc5ad8e0 (diff)
Add ShellCheck to project
Diffstat (limited to 'doc')
-rw-r--r--doc/testing.md21
1 files changed, 11 insertions, 10 deletions
diff --git a/doc/testing.md b/doc/testing.md
index 9809fc61..f6d2921d 100644
--- a/doc/testing.md
+++ b/doc/testing.md
@@ -10,16 +10,17 @@ configured in the project's [`.gitlab-ci.yml`](../.gitlab-ci.yml) file.
These code tests are included in the project:
-| Test target | Tool | Make target | Purpose |
-|:----------- |:-------------|:---------------------|:-------------------------------------------|
-| CSS | Stylelint | `stylelint-tests` | Code quality |
-| Dockerfiles | Hadolint | `hadolint-tests` | Syntax checks |
-| JavaScript | ESLint | `eslint-tests` | Syntax checks |
-| JavaScript | Prettier | `prettier-tests` | Code formatting |
-| Markdown | markdownlint | `markdownlint-tests` | Documentation formatting and syntax checks |
-| Ruby | RSpec | `rspec-tests` | Unit tests |
-| Vue | Jest | `jest-tests` | Unit tests |
-| YAML | yamllint | `yamllint-tests` | Syntax checks |
+| Test target | Tool | Make target | Purpose |
+|:--------------|:-------------|:---------------------|:-------------------------------------------|
+| CSS | Stylelint | `stylelint-tests` | Code quality |
+| Dockerfiles | Hadolint | `hadolint-tests` | Syntax checks |
+| JavaScript | ESLint | `eslint-tests` | Syntax checks |
+| JavaScript | Prettier | `prettier-tests` | Code formatting |
+| Markdown | markdownlint | `markdownlint-tests` | Documentation formatting and syntax checks |
+| Ruby | RSpec | `rspec-tests` | Unit tests |
+| Shell scripts | ShellCheck | `shellcheck-tests` | Syntax checks |
+| Vue | Jest | `jest-tests` | Unit tests |
+| YAML | yamllint | `yamllint-tests` | Syntax checks |
### Run code tests locally