git commit -m "first commit"

This commit is contained in:
2026-05-28 10:29:58 +07:00
commit 167c52aeb6
2048 changed files with 740251 additions and 0 deletions

25
mir_robot/.mdl_style.rb Executable file
View File

@@ -0,0 +1,25 @@
# Style file for markdownlint
all
exclude_rule 'fenced-code-language' # Fenced code blocks should have a language specified
exclude_rule 'first-line-h1' # First line in file should be a top level header
exclude_rule 'ul-style'
exclude_rule 'no-multiple-blanks'
exclude_rule 'header-style'
exclude_rule 'no-bare-urls' # we need to use a bare URL in the README for the video to properly show on GitHub
# Line lenght
rule 'MD013', :line_length => 120, :code_blocks => false, :tables => false
# Unordered list indentation
rule 'MD007', :indent => 2
# Ordered list item prefix
rule 'MD029', :style => 'ordered'
rule 'no-duplicate-header', :allow_different_nesting => true