diff options
author | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-07-13 00:51:20 +0530 |
---|---|---|
committer | txtsd <thexerothermicsclerodermoid@gmail.com> | 2022-08-06 13:00:57 +0530 |
commit | 76aa0c434a27be1865144bada7ba74f3d6d5e9de (patch) | |
tree | d4e11d90f87c74a3905aabc35805164a45e3190f | |
parent | 78dc0cfdf3aab90af359c8639a77e0165a916f2b (diff) | |
download | PrismLauncher-76aa0c434a27be1865144bada7ba74f3d6d5e9de.tar.gz PrismLauncher-76aa0c434a27be1865144bada7ba74f3d6d5e9de.tar.bz2 PrismLauncher-76aa0c434a27be1865144bada7ba74f3d6d5e9de.zip |
feat(markdown): Add markdownlint config
Signed-off-by: txtsd <thexerothermicsclerodermoid@gmail.com>
-rw-r--r-- | .markdownlint.yaml | 12 | ||||
-rw-r--r-- | .markdownlintignore | 2 |
2 files changed, 14 insertions, 0 deletions
diff --git a/.markdownlint.yaml b/.markdownlint.yaml new file mode 100644 index 00000000..5781edb0 --- /dev/null +++ b/.markdownlint.yaml @@ -0,0 +1,12 @@ +# MD013/line-length - Line length +MD013: false + +# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content +MD024: + siblings-only: true + +# MD033/no-inline-html Inline HTML +MD033: false + +# MD041/first-line-heading/first-line-h1 First line in a file should be a top-level heading +MD041: false diff --git a/.markdownlintignore b/.markdownlintignore new file mode 100644 index 00000000..a8669d01 --- /dev/null +++ b/.markdownlintignore @@ -0,0 +1,2 @@ +libraries/nbtplusplus +libraries/quazip |