Skip to content

Commit

Permalink
commit actual file contents
Browse files Browse the repository at this point in the history
  • Loading branch information
patritzenfeld committed Oct 11, 2024
1 parent aee0cae commit 9fe6c31
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions .github/linters/.markdownlint.jsonc
Original file line number Diff line number Diff line change
@@ -1,9 +1,19 @@
default: true
/ Example markdownlint configuration with all properties set to their default value
{

extends: null
// Default state for all rules
"default": true,

# MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md
MD007:
# Spaces for indent
indent: 3
// Path to configuration file to extend
"extends": null,

// MD007/ul-indent : Unordered list indentation : https://github.com/DavidAnson/markdownlint/blob/v0.35.0/doc/md007.md
"MD007": {
// Spaces for indent
"indent": 4,
// Whether to indent the first level of the list
"start_indented": false,
// Spaces for first level indent (when start_indented is set)
"start_indent": 2
},

0 comments on commit 9fe6c31

Please sign in to comment.