mirror of
https://github.com/DavidAnson/markdownlint.git
synced 2025-12-16 14:00:13 +01:00
Move all readConfig/Sync test files to test/config directory.
This commit is contained in:
parent
43a50c4cad
commit
11b19f141c
4 changed files with 27 additions and 22 deletions
4
test/config/config-child.json
Normal file
4
test/config/config-child.json
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
{
|
||||
"no-hard-tabs": false,
|
||||
"whitespace": false
|
||||
}
|
||||
6
test/config/config-grandparent.json
Normal file
6
test/config/config-grandparent.json
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"extends": "config-parent.json",
|
||||
"MD003": { "style": "atx_closed" },
|
||||
"MD007": { "indent": 2 },
|
||||
"no-hard-tabs": false
|
||||
}
|
||||
7
test/config/config-parent.json
Normal file
7
test/config/config-parent.json
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
"extends": "config-child.json",
|
||||
"MD003": false,
|
||||
"MD007": { "indent": 4 },
|
||||
"no-hard-tabs": true,
|
||||
"line-length": { "line_length": 200 }
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue