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>2024-01-15 15:10:21 +0300
committerGitLab Bot <gitlab-bot@gitlab.com>2024-01-15 15:10:21 +0300
commitf58a5001b9c4988d8b95178b028a3d82bb346e28 (patch)
treee6092641f71f45c88d833f66b95b91de1f0ebcb3 /.markdownlint.yml
parent7cd86149222a2dab444a28bb999ecedd3e50e242 (diff)
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to '.markdownlint.yml')
-rw-r--r--.markdownlint.yml50
1 files changed, 28 insertions, 22 deletions
diff --git a/.markdownlint.yml b/.markdownlint.yml
index 5a9e1f05e0e..4107e8d1073 100644
--- a/.markdownlint.yml
+++ b/.markdownlint.yml
@@ -1,31 +1,39 @@
---
# Base Markdownlint configuration
# Extended Markdownlint configuration in doc/.markdownlint/
+# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for explanations of each rule
+# First, set the default
default: true
-first-header-h1: true
-header-style:
+
+# Per-rule settings in alphabetical order
+code-block-style: # MD046
+ style: "fenced"
+emphasis-style: false # MD049
+first-header-h1: true # MD002
+first-line-h1: false # MD041
+header-style: # MD003
style: "atx"
-ul-style:
- style: "dash"
-no-trailing-spaces: false
-line-length: false
-no-duplicate-header:
+hr-style: # MD035
+ style: "---"
+line-length: false # MD013
+link-fragments: false # MD051
+no-duplicate-header: # MD024
allow_different_nesting: true
-no-trailing-punctuation:
+no-emphasis-as-heading: false # MD036
+no-inline-html: false # MD033
+no-trailing-punctuation: # MD026
punctuation: ".,;:!。,;:!?"
-ol-prefix:
+no-trailing-spaces: false # MD009
+ol-prefix: # MD029
style: "one"
-no-inline-html: false
-hr-style:
- style: "---"
-no-emphasis-as-heading: false
-first-line-h1: false
-code-block-style:
- style: "fenced"
-emphasis-style: false
-link-fragments: false
-reference-links-images: false
-proper-names:
+reference-links-images: false # MD052
+ul-style: # MD004
+ style: "dash"
+
+# Keep this item last due to length
+proper-names: # MD044
+ code_blocks: false
+ html_elements: false
names: [
"Akismet",
"Alertmanager",
@@ -150,5 +158,3 @@ proper-names:
"YAML",
"YouTrack"
]
- code_blocks: false
- html_elements: false