[CORD-2585]
Lint check documentation with markdownlint

Change-Id: I692660818730aa0838492eb8a62d689e3fccc54d
diff --git a/docs/mdlstyle.rb b/docs/mdlstyle.rb
new file mode 100644
index 0000000..ce1c0a6
--- /dev/null
+++ b/docs/mdlstyle.rb
@@ -0,0 +1,12 @@
+# use all rules
+all
+
+# Intent lists with 4 spaces
+rule 'MD007', :indent => 4
+
+# Don't enforce line length limitations within code blocks and tables
+rule 'MD013', :code_blocks => false, :tables => false
+
+# numbered lists should have the correct order
+rule 'MD029', :style => "ordered"
+