Commit 7b1d7a9a authored by Evan Read's avatar Evan Read

Merge branch 'docs-update-markdownlint-config-format' into 'master'

Remove unneeded quotes from markdownlint config

See merge request gitlab-org/gitlab!75177
parents c60fbf8f 729b2511
--- ---
# Base Markdownlint configuration # Base Markdownlint configuration
# Extended Markdownlint configuration in doc/.markdownlint/ # Extended Markdownlint configuration in doc/.markdownlint/
"default": true default: true
"first-header-h1": true first-header-h1: true
"header-style": header-style:
"style": "atx" style: "atx"
"ul-style": ul-style:
"style": "dash" style: "dash"
"no-trailing-spaces": false no-trailing-spaces: false
"line-length": false line-length: false
"no-duplicate-header": no-duplicate-header:
"allow_different_nesting": true allow_different_nesting: true
"no-trailing-punctuation": no-trailing-punctuation:
"punctuation": ".,;:!。,;:!?" punctuation: ".,;:!。,;:!?"
"ol-prefix": ol-prefix:
"style": "one" style: "one"
"no-inline-html": false no-inline-html: false
"hr-style": hr-style:
"style": "---" style: "---"
"no-emphasis-as-heading": false no-emphasis-as-heading: false
"first-line-h1": false first-line-h1: false
"code-block-style": code-block-style:
"style": "fenced" style: "fenced"
"proper-names": proper-names:
"names": [ names: [
"Akismet", "Akismet",
"Alertmanager", "Alertmanager",
"API", "API",
...@@ -139,4 +139,4 @@ ...@@ -139,4 +139,4 @@
"YAML", "YAML",
"YouTrack" "YouTrack"
] ]
"code_blocks": false code_blocks: false
--- ---
# Extended Markdown configuration to enforce no-trailing-spaces rule # Extended Markdown configuration to enforce no-trailing-spaces rule
"extends": "../../.markdownlint.yml" extends: "../../.markdownlint.yml"
"no-trailing-spaces": true no-trailing-spaces: true
...@@ -167,7 +167,7 @@ GitLab can display the results of one or more reports in: ...@@ -167,7 +167,7 @@ GitLab can display the results of one or more reports in:
The `dotenv` report collects a set of environment variables as artifacts. The `dotenv` report collects a set of environment variables as artifacts.
The collected variables are registered as runtime-created variables of the job, The collected variables are registered as runtime-created variables of the job,
which is useful to [set dynamic environment URLs after a job finishes](../environments/index.md#set-dynamic-environment-urls-after-a-job-finishes). which you can use to [set dynamic environment URLs after a job finishes](../environments/index.md#set-dynamic-environment-urls-after-a-job-finishes).
The exceptions to the [original dotenv rules](https://github.com/motdotla/dotenv#rules) are: The exceptions to the [original dotenv rules](https://github.com/motdotla/dotenv#rules) are:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment