├── .editorconfig ├── .gitignore ├── .gitlab-ci.yml ├── .gitlab └── renovate.json ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── LICENSE ├── README.md ├── eslint.config.js ├── index.js ├── lib ├── index.js ├── ruleChecker.js ├── rules │ ├── md001.js │ ├── md003.js │ ├── md004.js │ ├── md005.js │ ├── md007.js │ ├── md009.js │ ├── md010.js │ ├── md011.js │ ├── md012.js │ ├── md013.js │ ├── md014.js │ ├── md018.js │ ├── md019.js │ ├── md020.js │ ├── md021.js │ ├── md022.js │ ├── md023.js │ ├── md024.js │ ├── md025.js │ ├── md026.js │ ├── md027.js │ ├── md028.js │ ├── md029.js │ ├── md030.js │ ├── md031.js │ ├── md032.js │ ├── md033.js │ ├── md034.js │ ├── md035.js │ ├── md036.js │ ├── md037.js │ ├── md038.js │ ├── md039.js │ ├── md040.js │ ├── md041.js │ ├── md042.js │ ├── md043.js │ ├── md044.js │ ├── md045.js │ ├── md046.js │ ├── md047.js │ ├── md048.js │ ├── md049.js │ ├── md050.js │ └── rule.js ├── utils │ ├── allRulesDisabled.js │ ├── formatters.js │ └── index.js └── worker.mjs ├── package.json ├── parser.js ├── tests ├── fixable.test.js ├── rules │ ├── md001 │ │ ├── files │ │ │ ├── multiple-top-level.md │ │ │ ├── single-header.md │ │ │ ├── skipped-one-level.md │ │ │ └── tree.md │ │ └── md001.test.js │ ├── md003 │ │ ├── files │ │ │ ├── atx-closed.md │ │ │ ├── atx.md │ │ │ ├── mixed-1.md │ │ │ ├── mixed-2.md │ │ │ ├── mixed-3.md │ │ │ ├── mixed-4.md │ │ │ ├── setext-with-atx-closed.md │ │ │ ├── setext-with-atx.md │ │ │ └── setext.md │ │ └── md003.test.js │ ├── md004 │ │ ├── files │ │ │ ├── asterisk-invalid.md │ │ │ ├── asterisk.md │ │ │ ├── dash-invalid.md │ │ │ ├── dash.md │ │ │ ├── plus-invalid.md │ │ │ ├── plus.md │ │ │ ├── sublist-dash.md │ │ │ ├── sublist-dash2.md │ │ │ ├── sublist-invalid.md │ │ │ ├── sublist-plus.md │ │ │ ├── sublist-plus2.md │ │ │ └── sublist.md │ │ └── md004.test.js │ ├── md005 │ │ ├── files │ │ │ ├── correct.md │ │ │ └── incorrect.md │ │ └── md005.test.js │ ├── md007 │ │ ├── files │ │ │ ├── indent2-start.md │ │ │ ├── indent2.md │ │ │ ├── indent3-start.md │ │ │ ├── indent3.md │ │ │ └── mixed.md │ │ └── md007.test.js │ ├── md009 │ │ ├── files │ │ │ ├── br2-emptyf-strictf-v2.md │ │ │ ├── br2-emptyf-strictf.md │ │ │ ├── br2-emptyf-strictt-v2.md │ │ │ ├── br2-emptyf-strictt.md │ │ │ ├── br2-emptyt-strictf.md │ │ │ ├── br2-emptyt-strictt.md │ │ │ ├── br3-emptyf-strictf-v2.md │ │ │ ├── br3-emptyf-strictf.md │ │ │ ├── br3-emptyf-strictt-v2.md │ │ │ ├── br3-emptyf-strictt.md │ │ │ ├── br3-emptyt-strictf.md │ │ │ ├── br3-emptyt-strictt-v2.md │ │ │ ├── br3-emptyt-strictt.md │ │ │ └── invalid.md │ │ └── md009.test.js │ ├── md010 │ │ ├── files │ │ │ ├── block-spaces1.md │ │ │ ├── block-spaces2.md │ │ │ ├── invalid.md │ │ │ ├── spaces1-fixed-block2.md │ │ │ ├── spaces1.md │ │ │ ├── spaces2-fixed-block1.md │ │ │ └── spaces2.md │ │ └── md010.test.js │ ├── md011 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md011.test.js │ ├── md012 │ │ ├── files │ │ │ ├── four.md │ │ │ ├── one-with-spaces.md │ │ │ ├── one.md │ │ │ ├── three-with-spaces.md │ │ │ ├── three.md │ │ │ ├── too-many-on-end.md │ │ │ └── two.md │ │ └── md012.test.js │ ├── md013 │ │ ├── files │ │ │ ├── 78-80-80-ttttt.md │ │ │ ├── 80-78-80-ttttt.md │ │ │ ├── 80-80-78-ttttt.md │ │ │ ├── 80-80-80-ftttt.md │ │ │ ├── 80-80-80-tfttt.md │ │ │ ├── 80-80-80-ttftt.md │ │ │ ├── 80-80-80-tttff.md │ │ │ ├── 80-80-80-tttft.md │ │ │ ├── 80-80-80-ttttf.md │ │ │ ├── 80-80-80-ttttt.md │ │ │ └── 88-88-88-ttttt.md │ │ └── md013.test.js │ ├── md014 │ │ ├── files │ │ │ ├── no-output-with-dollar.md │ │ │ ├── no-output-without-dollar.md │ │ │ └── output-with-dollar.md │ │ └── md014.test.js │ ├── md018 │ │ ├── files │ │ │ ├── atx-with-space.md │ │ │ └── atx-without-space.md │ │ └── md018.test.js │ ├── md019 │ │ ├── files │ │ │ ├── atx-with-many-spaces.md │ │ │ └── atx-with-space.md │ │ └── md019.test.js │ ├── md020 │ │ ├── files │ │ │ ├── atx-closed-with-space.md │ │ │ └── atx-closed-without-space.md │ │ └── md020.test.js │ ├── md021 │ │ ├── files │ │ │ ├── atx-closed-with-many-spaces.md │ │ │ └── atx-closed-with-space.md │ │ └── md021.test.js │ ├── md022 │ │ ├── files │ │ │ ├── above-0-below-0.md │ │ │ ├── above-1-below-1.md │ │ │ ├── above-1-below-2.md │ │ │ ├── above-2-below-1.md │ │ │ └── above-2-below-2.md │ │ └── md022.test.js │ ├── md023 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md023.test.js │ ├── md024 │ │ ├── files │ │ │ ├── different_nesting.md │ │ │ ├── invalid.md │ │ │ ├── siblings_only.md │ │ │ └── valid.md │ │ └── md024.test.js │ ├── md025 │ │ ├── files │ │ │ ├── front_matter_custom.md │ │ │ ├── front_matter_invalid.md │ │ │ ├── front_matter_valid.md │ │ │ ├── invalid_h1.md │ │ │ ├── invalid_h2.md │ │ │ └── valid.md │ │ └── md025.test.js │ ├── md026 │ │ ├── files │ │ │ ├── dash.md │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md026.test.js │ ├── md027 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md027.test.js │ ├── md028 │ │ ├── files │ │ │ ├── invalid.md │ │ │ ├── valid1.md │ │ │ └── valid2.md │ │ └── md028.test.js │ ├── md029 │ │ ├── files │ │ │ ├── invalid.md │ │ │ ├── one.md │ │ │ ├── ordered.md │ │ │ └── zero.md │ │ └── md029.test.js │ ├── md030 │ │ ├── files │ │ │ ├── 1-1-1-1.md │ │ │ └── 2-2-2-2.md │ │ └── md030.test.js │ ├── md031 │ │ ├── files │ │ │ ├── invalid.md │ │ │ ├── valid-without-lists.md │ │ │ └── valid.md │ │ └── md031.test.js │ ├── md032 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md032.test.js │ ├── md033 │ │ ├── files │ │ │ ├── with-br-html-tag.md │ │ │ ├── with-h1-html-tag.md │ │ │ └── without-html.md │ │ └── md033.test.js │ ├── md034 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md034.test.js │ ├── md035 │ │ ├── files │ │ │ ├── dashes.md │ │ │ ├── mixed.md │ │ │ └── stars.md │ │ └── md035.test.js │ ├── md036 │ │ ├── files │ │ │ ├── invalid-with-punctuation.md │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md036.test.js │ ├── md037 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md037.test.js │ ├── md038 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md038.test.js │ ├── md039 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md039.test.js │ ├── md040 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md040.test.js │ ├── md041 │ │ ├── files │ │ │ ├── front_matter.md │ │ │ ├── image-on-first-line-level2.md │ │ │ ├── image-on-first-line.md │ │ │ ├── invalid.md │ │ │ ├── valid-level2.md │ │ │ └── valid.md │ │ └── md041.test.js │ ├── md042 │ │ ├── files │ │ │ ├── invalid-fragment.md │ │ │ ├── invalid-link.md │ │ │ ├── valid-fragment.md │ │ │ └── valid-link.md │ │ └── md042.test.js │ ├── md043 │ │ ├── files │ │ │ ├── no-optional-invalid.md │ │ │ ├── no-optional-valid.md │ │ │ ├── optional-invalid.md │ │ │ ├── optional-valid1.md │ │ │ └── optional-valid2.md │ │ └── md043.test.js │ ├── md044 │ │ ├── files │ │ │ ├── invalid.md │ │ │ ├── valid-without-cb.md │ │ │ └── valid.md │ │ └── md044.test.js │ ├── md045 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md045.test.js │ ├── md046 │ │ ├── files │ │ │ ├── fenced.md │ │ │ ├── indented.md │ │ │ └── mixed.md │ │ └── md046.test.js │ ├── md047 │ │ ├── files │ │ │ ├── invalid.md │ │ │ └── valid.md │ │ └── md047.test.js │ ├── md048 │ │ ├── files │ │ │ ├── backtick.md │ │ │ ├── mixed.md │ │ │ └── tilde.md │ │ └── md048.test.js │ ├── md049 │ │ ├── files │ │ │ ├── asterisk.md │ │ │ ├── mixed.md │ │ │ └── underscore.md │ │ └── md049.test.js │ ├── md050 │ │ ├── files │ │ │ ├── asterisk.md │ │ │ ├── mixed.md │ │ │ └── underscore.md │ │ └── md050.test.js │ └── ruleTester.js └── utils.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | node_modules 3 | coverage 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /.gitlab/renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/.gitlab/renovate.json -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .idea 2 | tests 3 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/eslint.config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/index.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/ruleChecker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/ruleChecker.js -------------------------------------------------------------------------------- /lib/rules/md001.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md001.js -------------------------------------------------------------------------------- /lib/rules/md003.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md003.js -------------------------------------------------------------------------------- /lib/rules/md004.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md004.js -------------------------------------------------------------------------------- /lib/rules/md005.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md005.js -------------------------------------------------------------------------------- /lib/rules/md007.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md007.js -------------------------------------------------------------------------------- /lib/rules/md009.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md009.js -------------------------------------------------------------------------------- /lib/rules/md010.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md010.js -------------------------------------------------------------------------------- /lib/rules/md011.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md011.js -------------------------------------------------------------------------------- /lib/rules/md012.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md012.js -------------------------------------------------------------------------------- /lib/rules/md013.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md013.js -------------------------------------------------------------------------------- /lib/rules/md014.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md014.js -------------------------------------------------------------------------------- /lib/rules/md018.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md018.js -------------------------------------------------------------------------------- /lib/rules/md019.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md019.js -------------------------------------------------------------------------------- /lib/rules/md020.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md020.js -------------------------------------------------------------------------------- /lib/rules/md021.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md021.js -------------------------------------------------------------------------------- /lib/rules/md022.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md022.js -------------------------------------------------------------------------------- /lib/rules/md023.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md023.js -------------------------------------------------------------------------------- /lib/rules/md024.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md024.js -------------------------------------------------------------------------------- /lib/rules/md025.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md025.js -------------------------------------------------------------------------------- /lib/rules/md026.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md026.js -------------------------------------------------------------------------------- /lib/rules/md027.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md027.js -------------------------------------------------------------------------------- /lib/rules/md028.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md028.js -------------------------------------------------------------------------------- /lib/rules/md029.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md029.js -------------------------------------------------------------------------------- /lib/rules/md030.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md030.js -------------------------------------------------------------------------------- /lib/rules/md031.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md031.js -------------------------------------------------------------------------------- /lib/rules/md032.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md032.js -------------------------------------------------------------------------------- /lib/rules/md033.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md033.js -------------------------------------------------------------------------------- /lib/rules/md034.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md034.js -------------------------------------------------------------------------------- /lib/rules/md035.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md035.js -------------------------------------------------------------------------------- /lib/rules/md036.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md036.js -------------------------------------------------------------------------------- /lib/rules/md037.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md037.js -------------------------------------------------------------------------------- /lib/rules/md038.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md038.js -------------------------------------------------------------------------------- /lib/rules/md039.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md039.js -------------------------------------------------------------------------------- /lib/rules/md040.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md040.js -------------------------------------------------------------------------------- /lib/rules/md041.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md041.js -------------------------------------------------------------------------------- /lib/rules/md042.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md042.js -------------------------------------------------------------------------------- /lib/rules/md043.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md043.js -------------------------------------------------------------------------------- /lib/rules/md044.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md044.js -------------------------------------------------------------------------------- /lib/rules/md045.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md045.js -------------------------------------------------------------------------------- /lib/rules/md046.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md046.js -------------------------------------------------------------------------------- /lib/rules/md047.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md047.js -------------------------------------------------------------------------------- /lib/rules/md048.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md048.js -------------------------------------------------------------------------------- /lib/rules/md049.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md049.js -------------------------------------------------------------------------------- /lib/rules/md050.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/md050.js -------------------------------------------------------------------------------- /lib/rules/rule.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/rules/rule.js -------------------------------------------------------------------------------- /lib/utils/allRulesDisabled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/utils/allRulesDisabled.js -------------------------------------------------------------------------------- /lib/utils/formatters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/utils/formatters.js -------------------------------------------------------------------------------- /lib/utils/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/utils/index.js -------------------------------------------------------------------------------- /lib/worker.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/lib/worker.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/package.json -------------------------------------------------------------------------------- /parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/parser.js -------------------------------------------------------------------------------- /tests/fixable.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/fixable.test.js -------------------------------------------------------------------------------- /tests/rules/md001/files/multiple-top-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md001/files/multiple-top-level.md -------------------------------------------------------------------------------- /tests/rules/md001/files/single-header.md: -------------------------------------------------------------------------------- 1 | # Header 1 2 | -------------------------------------------------------------------------------- /tests/rules/md001/files/skipped-one-level.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md001/files/skipped-one-level.md -------------------------------------------------------------------------------- /tests/rules/md001/files/tree.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md001/files/tree.md -------------------------------------------------------------------------------- /tests/rules/md001/md001.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md001/md001.test.js -------------------------------------------------------------------------------- /tests/rules/md003/files/atx-closed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/atx-closed.md -------------------------------------------------------------------------------- /tests/rules/md003/files/atx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/atx.md -------------------------------------------------------------------------------- /tests/rules/md003/files/mixed-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/mixed-1.md -------------------------------------------------------------------------------- /tests/rules/md003/files/mixed-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/mixed-2.md -------------------------------------------------------------------------------- /tests/rules/md003/files/mixed-3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/mixed-3.md -------------------------------------------------------------------------------- /tests/rules/md003/files/mixed-4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/mixed-4.md -------------------------------------------------------------------------------- /tests/rules/md003/files/setext-with-atx-closed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/setext-with-atx-closed.md -------------------------------------------------------------------------------- /tests/rules/md003/files/setext-with-atx.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/setext-with-atx.md -------------------------------------------------------------------------------- /tests/rules/md003/files/setext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/files/setext.md -------------------------------------------------------------------------------- /tests/rules/md003/md003.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md003/md003.test.js -------------------------------------------------------------------------------- /tests/rules/md004/files/asterisk-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/asterisk-invalid.md -------------------------------------------------------------------------------- /tests/rules/md004/files/asterisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/asterisk.md -------------------------------------------------------------------------------- /tests/rules/md004/files/dash-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/dash-invalid.md -------------------------------------------------------------------------------- /tests/rules/md004/files/dash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/dash.md -------------------------------------------------------------------------------- /tests/rules/md004/files/plus-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/plus-invalid.md -------------------------------------------------------------------------------- /tests/rules/md004/files/plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/plus.md -------------------------------------------------------------------------------- /tests/rules/md004/files/sublist-dash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/sublist-dash.md -------------------------------------------------------------------------------- /tests/rules/md004/files/sublist-dash2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/sublist-dash2.md -------------------------------------------------------------------------------- /tests/rules/md004/files/sublist-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/sublist-invalid.md -------------------------------------------------------------------------------- /tests/rules/md004/files/sublist-plus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/sublist-plus.md -------------------------------------------------------------------------------- /tests/rules/md004/files/sublist-plus2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/sublist-plus2.md -------------------------------------------------------------------------------- /tests/rules/md004/files/sublist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/files/sublist.md -------------------------------------------------------------------------------- /tests/rules/md004/md004.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md004/md004.test.js -------------------------------------------------------------------------------- /tests/rules/md005/files/correct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md005/files/correct.md -------------------------------------------------------------------------------- /tests/rules/md005/files/incorrect.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md005/files/incorrect.md -------------------------------------------------------------------------------- /tests/rules/md005/md005.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md005/md005.test.js -------------------------------------------------------------------------------- /tests/rules/md007/files/indent2-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md007/files/indent2-start.md -------------------------------------------------------------------------------- /tests/rules/md007/files/indent2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md007/files/indent2.md -------------------------------------------------------------------------------- /tests/rules/md007/files/indent3-start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md007/files/indent3-start.md -------------------------------------------------------------------------------- /tests/rules/md007/files/indent3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md007/files/indent3.md -------------------------------------------------------------------------------- /tests/rules/md007/files/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md007/files/mixed.md -------------------------------------------------------------------------------- /tests/rules/md007/md007.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md007/md007.test.js -------------------------------------------------------------------------------- /tests/rules/md009/files/br2-emptyf-strictf-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br2-emptyf-strictf-v2.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br2-emptyf-strictf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br2-emptyf-strictf.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br2-emptyf-strictt-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br2-emptyf-strictt-v2.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br2-emptyf-strictt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br2-emptyf-strictt.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br2-emptyt-strictf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br2-emptyt-strictf.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br2-emptyt-strictt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br2-emptyt-strictt.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyf-strictf-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyf-strictf-v2.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyf-strictf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyf-strictf.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyf-strictt-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyf-strictt-v2.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyf-strictt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyf-strictt.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyt-strictf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyt-strictf.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyt-strictt-v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyt-strictt-v2.md -------------------------------------------------------------------------------- /tests/rules/md009/files/br3-emptyt-strictt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/br3-emptyt-strictt.md -------------------------------------------------------------------------------- /tests/rules/md009/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md009/md009.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md009/md009.test.js -------------------------------------------------------------------------------- /tests/rules/md010/files/block-spaces1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/block-spaces1.md -------------------------------------------------------------------------------- /tests/rules/md010/files/block-spaces2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/block-spaces2.md -------------------------------------------------------------------------------- /tests/rules/md010/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md010/files/spaces1-fixed-block2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/spaces1-fixed-block2.md -------------------------------------------------------------------------------- /tests/rules/md010/files/spaces1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/spaces1.md -------------------------------------------------------------------------------- /tests/rules/md010/files/spaces2-fixed-block1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/spaces2-fixed-block1.md -------------------------------------------------------------------------------- /tests/rules/md010/files/spaces2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/files/spaces2.md -------------------------------------------------------------------------------- /tests/rules/md010/md010.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md010/md010.test.js -------------------------------------------------------------------------------- /tests/rules/md011/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md011/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md011/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md011/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md011/md011.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md011/md011.test.js -------------------------------------------------------------------------------- /tests/rules/md012/files/four.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/four.md -------------------------------------------------------------------------------- /tests/rules/md012/files/one-with-spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/one-with-spaces.md -------------------------------------------------------------------------------- /tests/rules/md012/files/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/one.md -------------------------------------------------------------------------------- /tests/rules/md012/files/three-with-spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/three-with-spaces.md -------------------------------------------------------------------------------- /tests/rules/md012/files/three.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/three.md -------------------------------------------------------------------------------- /tests/rules/md012/files/too-many-on-end.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/too-many-on-end.md -------------------------------------------------------------------------------- /tests/rules/md012/files/two.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/files/two.md -------------------------------------------------------------------------------- /tests/rules/md012/md012.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md012/md012.test.js -------------------------------------------------------------------------------- /tests/rules/md013/files/78-80-80-ttttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/78-80-80-ttttt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-78-80-ttttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-78-80-ttttt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-78-ttttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-78-ttttt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-ftttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-ftttt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-tfttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-tfttt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-ttftt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-ttftt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-tttff.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-tttff.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-tttft.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-tttft.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-ttttf.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-ttttf.md -------------------------------------------------------------------------------- /tests/rules/md013/files/80-80-80-ttttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/80-80-80-ttttt.md -------------------------------------------------------------------------------- /tests/rules/md013/files/88-88-88-ttttt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/files/88-88-88-ttttt.md -------------------------------------------------------------------------------- /tests/rules/md013/md013.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md013/md013.test.js -------------------------------------------------------------------------------- /tests/rules/md014/files/no-output-with-dollar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md014/files/no-output-with-dollar.md -------------------------------------------------------------------------------- /tests/rules/md014/files/no-output-without-dollar.md: -------------------------------------------------------------------------------- 1 | 2 | ```shell 3 | ls 4 | cat foo 5 | less bar 6 | ``` 7 | -------------------------------------------------------------------------------- /tests/rules/md014/files/output-with-dollar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md014/files/output-with-dollar.md -------------------------------------------------------------------------------- /tests/rules/md014/md014.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md014/md014.test.js -------------------------------------------------------------------------------- /tests/rules/md018/files/atx-with-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md018/files/atx-with-space.md -------------------------------------------------------------------------------- /tests/rules/md018/files/atx-without-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md018/files/atx-without-space.md -------------------------------------------------------------------------------- /tests/rules/md018/md018.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md018/md018.test.js -------------------------------------------------------------------------------- /tests/rules/md019/files/atx-with-many-spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md019/files/atx-with-many-spaces.md -------------------------------------------------------------------------------- /tests/rules/md019/files/atx-with-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md019/files/atx-with-space.md -------------------------------------------------------------------------------- /tests/rules/md019/md019.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md019/md019.test.js -------------------------------------------------------------------------------- /tests/rules/md020/files/atx-closed-with-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md020/files/atx-closed-with-space.md -------------------------------------------------------------------------------- /tests/rules/md020/files/atx-closed-without-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md020/files/atx-closed-without-space.md -------------------------------------------------------------------------------- /tests/rules/md020/md020.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md020/md020.test.js -------------------------------------------------------------------------------- /tests/rules/md021/files/atx-closed-with-many-spaces.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md021/files/atx-closed-with-many-spaces.md -------------------------------------------------------------------------------- /tests/rules/md021/files/atx-closed-with-space.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md021/files/atx-closed-with-space.md -------------------------------------------------------------------------------- /tests/rules/md021/md021.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md021/md021.test.js -------------------------------------------------------------------------------- /tests/rules/md022/files/above-0-below-0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md022/files/above-0-below-0.md -------------------------------------------------------------------------------- /tests/rules/md022/files/above-1-below-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md022/files/above-1-below-1.md -------------------------------------------------------------------------------- /tests/rules/md022/files/above-1-below-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md022/files/above-1-below-2.md -------------------------------------------------------------------------------- /tests/rules/md022/files/above-2-below-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md022/files/above-2-below-1.md -------------------------------------------------------------------------------- /tests/rules/md022/files/above-2-below-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md022/files/above-2-below-2.md -------------------------------------------------------------------------------- /tests/rules/md022/md022.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md022/md022.test.js -------------------------------------------------------------------------------- /tests/rules/md023/files/invalid.md: -------------------------------------------------------------------------------- 1 | Some text 2 | 3 | # Heading 4 | -------------------------------------------------------------------------------- /tests/rules/md023/files/valid.md: -------------------------------------------------------------------------------- 1 | Some text 2 | 3 | # Heading 4 | -------------------------------------------------------------------------------- /tests/rules/md023/md023.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md023/md023.test.js -------------------------------------------------------------------------------- /tests/rules/md024/files/different_nesting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md024/files/different_nesting.md -------------------------------------------------------------------------------- /tests/rules/md024/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md024/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md024/files/siblings_only.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md024/files/siblings_only.md -------------------------------------------------------------------------------- /tests/rules/md024/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md024/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md024/md024.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md024/md024.test.js -------------------------------------------------------------------------------- /tests/rules/md025/files/front_matter_custom.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md025/files/front_matter_custom.md -------------------------------------------------------------------------------- /tests/rules/md025/files/front_matter_invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md025/files/front_matter_invalid.md -------------------------------------------------------------------------------- /tests/rules/md025/files/front_matter_valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md025/files/front_matter_valid.md -------------------------------------------------------------------------------- /tests/rules/md025/files/invalid_h1.md: -------------------------------------------------------------------------------- 1 | # Title 2 | 3 | # First chapter 4 | -------------------------------------------------------------------------------- /tests/rules/md025/files/invalid_h2.md: -------------------------------------------------------------------------------- 1 | ## Title 2 | 3 | ## First chapter 4 | -------------------------------------------------------------------------------- /tests/rules/md025/files/valid.md: -------------------------------------------------------------------------------- 1 | # Title 2 | 3 | ## First chapter 4 | -------------------------------------------------------------------------------- /tests/rules/md025/md025.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md025/md025.test.js -------------------------------------------------------------------------------- /tests/rules/md026/files/dash.md: -------------------------------------------------------------------------------- 1 | # This is a heading- 2 | -------------------------------------------------------------------------------- /tests/rules/md026/files/invalid.md: -------------------------------------------------------------------------------- 1 | # This is a heading. 2 | -------------------------------------------------------------------------------- /tests/rules/md026/files/valid.md: -------------------------------------------------------------------------------- 1 | # This is a heading 2 | -------------------------------------------------------------------------------- /tests/rules/md026/md026.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md026/md026.test.js -------------------------------------------------------------------------------- /tests/rules/md027/files/invalid.md: -------------------------------------------------------------------------------- 1 | > This is a blockquote with 2 | > indentation. 3 | -------------------------------------------------------------------------------- /tests/rules/md027/files/valid.md: -------------------------------------------------------------------------------- 1 | > This is a blockquote with 2 | > indentation. 3 | -------------------------------------------------------------------------------- /tests/rules/md027/md027.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md027/md027.test.js -------------------------------------------------------------------------------- /tests/rules/md028/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md028/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md028/files/valid1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md028/files/valid1.md -------------------------------------------------------------------------------- /tests/rules/md028/files/valid2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md028/files/valid2.md -------------------------------------------------------------------------------- /tests/rules/md028/md028.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md028/md028.test.js -------------------------------------------------------------------------------- /tests/rules/md029/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md029/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md029/files/one.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md029/files/one.md -------------------------------------------------------------------------------- /tests/rules/md029/files/ordered.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md029/files/ordered.md -------------------------------------------------------------------------------- /tests/rules/md029/files/zero.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md029/files/zero.md -------------------------------------------------------------------------------- /tests/rules/md029/md029.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md029/md029.test.js -------------------------------------------------------------------------------- /tests/rules/md030/files/1-1-1-1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md030/files/1-1-1-1.md -------------------------------------------------------------------------------- /tests/rules/md030/files/2-2-2-2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md030/files/2-2-2-2.md -------------------------------------------------------------------------------- /tests/rules/md030/md030.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md030/md030.test.js -------------------------------------------------------------------------------- /tests/rules/md031/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md031/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md031/files/valid-without-lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md031/files/valid-without-lists.md -------------------------------------------------------------------------------- /tests/rules/md031/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md031/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md031/md031.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md031/md031.test.js -------------------------------------------------------------------------------- /tests/rules/md032/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md032/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md032/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md032/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md032/md032.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md032/md032.test.js -------------------------------------------------------------------------------- /tests/rules/md033/files/with-br-html-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md033/files/with-br-html-tag.md -------------------------------------------------------------------------------- /tests/rules/md033/files/with-h1-html-tag.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md033/files/with-h1-html-tag.md -------------------------------------------------------------------------------- /tests/rules/md033/files/without-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md033/files/without-html.md -------------------------------------------------------------------------------- /tests/rules/md033/md033.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md033/md033.test.js -------------------------------------------------------------------------------- /tests/rules/md034/files/invalid.md: -------------------------------------------------------------------------------- 1 | For more information, see https://www.example.com/. 2 | -------------------------------------------------------------------------------- /tests/rules/md034/files/valid.md: -------------------------------------------------------------------------------- 1 | For more information, see . 2 | -------------------------------------------------------------------------------- /tests/rules/md034/md034.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md034/md034.test.js -------------------------------------------------------------------------------- /tests/rules/md035/files/dashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md035/files/dashes.md -------------------------------------------------------------------------------- /tests/rules/md035/files/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md035/files/mixed.md -------------------------------------------------------------------------------- /tests/rules/md035/files/stars.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md035/files/stars.md -------------------------------------------------------------------------------- /tests/rules/md035/md035.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md035/md035.test.js -------------------------------------------------------------------------------- /tests/rules/md036/files/invalid-with-punctuation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md036/files/invalid-with-punctuation.md -------------------------------------------------------------------------------- /tests/rules/md036/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md036/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md036/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md036/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md036/md036.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md036/md036.test.js -------------------------------------------------------------------------------- /tests/rules/md037/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md037/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md037/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md037/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md037/md037.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md037/md037.test.js -------------------------------------------------------------------------------- /tests/rules/md038/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md038/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md038/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md038/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md038/md038.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md038/md038.test.js -------------------------------------------------------------------------------- /tests/rules/md039/files/invalid.md: -------------------------------------------------------------------------------- 1 | [ a link ](https://www.example.com/) 2 | -------------------------------------------------------------------------------- /tests/rules/md039/files/valid.md: -------------------------------------------------------------------------------- 1 | [a link](https://www.example.com/) 2 | -------------------------------------------------------------------------------- /tests/rules/md039/md039.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md039/md039.test.js -------------------------------------------------------------------------------- /tests/rules/md040/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md040/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md040/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md040/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md040/md040.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md040/md040.test.js -------------------------------------------------------------------------------- /tests/rules/md041/files/front_matter.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/files/front_matter.md -------------------------------------------------------------------------------- /tests/rules/md041/files/image-on-first-line-level2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/files/image-on-first-line-level2.md -------------------------------------------------------------------------------- /tests/rules/md041/files/image-on-first-line.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/files/image-on-first-line.md -------------------------------------------------------------------------------- /tests/rules/md041/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md041/files/valid-level2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/files/valid-level2.md -------------------------------------------------------------------------------- /tests/rules/md041/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md041/md041.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md041/md041.test.js -------------------------------------------------------------------------------- /tests/rules/md042/files/invalid-fragment.md: -------------------------------------------------------------------------------- 1 | [an empty fragment](#) 2 | -------------------------------------------------------------------------------- /tests/rules/md042/files/invalid-link.md: -------------------------------------------------------------------------------- 1 | [an empty link]() 2 | -------------------------------------------------------------------------------- /tests/rules/md042/files/valid-fragment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md042/files/valid-fragment.md -------------------------------------------------------------------------------- /tests/rules/md042/files/valid-link.md: -------------------------------------------------------------------------------- 1 | [a valid link](https://example.com/) 2 | 3 | -------------------------------------------------------------------------------- /tests/rules/md042/md042.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md042/md042.test.js -------------------------------------------------------------------------------- /tests/rules/md043/files/no-optional-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md043/files/no-optional-invalid.md -------------------------------------------------------------------------------- /tests/rules/md043/files/no-optional-valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md043/files/no-optional-valid.md -------------------------------------------------------------------------------- /tests/rules/md043/files/optional-invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md043/files/optional-invalid.md -------------------------------------------------------------------------------- /tests/rules/md043/files/optional-valid1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md043/files/optional-valid1.md -------------------------------------------------------------------------------- /tests/rules/md043/files/optional-valid2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md043/files/optional-valid2.md -------------------------------------------------------------------------------- /tests/rules/md043/md043.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md043/md043.test.js -------------------------------------------------------------------------------- /tests/rules/md044/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md044/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md044/files/valid-without-cb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md044/files/valid-without-cb.md -------------------------------------------------------------------------------- /tests/rules/md044/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md044/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md044/md044.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md044/md044.test.js -------------------------------------------------------------------------------- /tests/rules/md045/files/invalid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md045/files/invalid.md -------------------------------------------------------------------------------- /tests/rules/md045/files/valid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md045/files/valid.md -------------------------------------------------------------------------------- /tests/rules/md045/md045.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md045/md045.test.js -------------------------------------------------------------------------------- /tests/rules/md046/files/fenced.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md046/files/fenced.md -------------------------------------------------------------------------------- /tests/rules/md046/files/indented.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md046/files/indented.md -------------------------------------------------------------------------------- /tests/rules/md046/files/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md046/files/mixed.md -------------------------------------------------------------------------------- /tests/rules/md046/md046.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md046/md046.test.js -------------------------------------------------------------------------------- /tests/rules/md047/files/invalid.md: -------------------------------------------------------------------------------- 1 | # Heading 2 | 3 | This file ends without a newline. -------------------------------------------------------------------------------- /tests/rules/md047/files/valid.md: -------------------------------------------------------------------------------- 1 | # Heading 2 | 3 | This file ends without a newline. 4 | -------------------------------------------------------------------------------- /tests/rules/md047/md047.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md047/md047.test.js -------------------------------------------------------------------------------- /tests/rules/md048/files/backtick.md: -------------------------------------------------------------------------------- 1 | ```python 2 | # Indented code 3 | ``` 4 | -------------------------------------------------------------------------------- /tests/rules/md048/files/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md048/files/mixed.md -------------------------------------------------------------------------------- /tests/rules/md048/files/tilde.md: -------------------------------------------------------------------------------- 1 | ~~~python 2 | # Indented code 3 | ~~~ 4 | -------------------------------------------------------------------------------- /tests/rules/md048/md048.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md048/md048.test.js -------------------------------------------------------------------------------- /tests/rules/md049/files/asterisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md049/files/asterisk.md -------------------------------------------------------------------------------- /tests/rules/md049/files/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md049/files/mixed.md -------------------------------------------------------------------------------- /tests/rules/md049/files/underscore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md049/files/underscore.md -------------------------------------------------------------------------------- /tests/rules/md049/md049.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md049/md049.test.js -------------------------------------------------------------------------------- /tests/rules/md050/files/asterisk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md050/files/asterisk.md -------------------------------------------------------------------------------- /tests/rules/md050/files/mixed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md050/files/mixed.md -------------------------------------------------------------------------------- /tests/rules/md050/files/underscore.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md050/files/underscore.md -------------------------------------------------------------------------------- /tests/rules/md050/md050.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/md050/md050.test.js -------------------------------------------------------------------------------- /tests/rules/ruleTester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/rules/ruleTester.js -------------------------------------------------------------------------------- /tests/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/tests/utils.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paweldrozd/eslint-plugin-markdownlint/HEAD/yarn.lock --------------------------------------------------------------------------------