File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change 4
4
# See https://github.com/DavidAnson/markdownlint/blob/main/doc/Rules.md for explanations of each rule
5
5
config :
6
6
# turn settings on or off here
7
- default : false
8
- MD040 : false # Fenced code blocks should have a language specified
9
- links-url-type : false # Disallow relative links to a .md or .mdx file
10
- custom-anchor-headings : true # Headings must have a custom anchor which is unique per page eg. # A Heading {#a-heading}
7
+ default : false
8
+ MD040 : false # Fenced code blocks should have a language specified
9
+ links-url-type : false # Disallow relative links to a .md or .mdx file
10
+ custom-anchor-headings : false # Headings must have a custom anchor which is unique per page eg. # A Heading {#a-heading}
11
11
no-markdown-image-tags : false
12
12
# Keep this item last due to length
13
- proper-names : # MD044
13
+ proper-names : # MD044
14
14
code_blocks : false
15
15
html_elements : false
16
- names : [
17
- # add Proper Names to ignore on capitalization check here
18
- ]
16
+ names : []
17
+ # add Proper Names to ignore on capitalization check here
19
18
ignores :
20
19
# add or remove ignored directories here
21
20
- " docs/ru"
@@ -29,5 +28,3 @@ customRules:
29
28
# add custom rules here
30
29
- " ./markdownlint/custom_rules/links_url_type.js"
31
30
- " ./markdownlint/custom_rules/headings_have_custom_anchors.js"
32
-
33
-
You can’t perform that action at this time.
0 commit comments