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

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYoussef Victor <31348972+Youssef1313@users.noreply.github.com>2021-02-08 21:43:40 +0300
committerGitHub <noreply@github.com>2021-02-08 21:43:40 +0300
commit5d5c3e7a589e21e43ad6464b6ed6732e98e7fc8a (patch)
tree38c99f0cdb83475404a5e2d9f5a375881b9acaf6 /.markdownlint.json
parentd1d6ab151c693a86736f3dfdefcf09f4bbbdc2bb (diff)
Enable markdownlint rule (MD009) (#40887)
* Create markdownlint.yml * Create markdownlint-problem-matcher.json * Create .markdownlint.json * Update .markdownlint.json * fix violations * fixes * Remove "push" section As advised by @viktorhofer so it's quite clear it only runs in CI. Co-authored-by: Dan Moseley <danmose@microsoft.com>
Diffstat (limited to '.markdownlint.json')
-rw-r--r--.markdownlint.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/.markdownlint.json b/.markdownlint.json
new file mode 100644
index 00000000000..3cff3f10aba
--- /dev/null
+++ b/.markdownlint.json
@@ -0,0 +1,6 @@
+{
+ "default": false,
+ "MD009": {
+ "br_spaces": 0
+ },
+}