├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .gitmodules ├── .npmrc ├── cli.js ├── config.js ├── index.js ├── lib ├── find-author-name.js ├── find-readme-file.js ├── github-api.js ├── identifier-allow-list.js └── spell-check-rules.js ├── license ├── media ├── logo.ai ├── logo.png ├── logo.svg └── screenshot.png ├── package.json ├── readme.md ├── rules ├── badge.js ├── balanced-punctuation.js ├── code-of-conduct.js ├── contributing.js ├── double-link.js ├── git-repo-age.js ├── github.js ├── heading.js ├── index.js ├── license.js ├── list-item.js ├── no-ci-badge.js ├── no-repeat-item-in-description.js ├── spell-check.js └── toc.js └── test ├── _lint.js ├── api.test.js ├── cli.test.js ├── fixtures ├── .editorconfig ├── badge │ ├── error0.md │ ├── error1.md │ ├── error2.md │ ├── success0.md │ ├── success1.md │ └── success2.md ├── balanced-punctuation │ ├── actual-curly-quote.md │ ├── angle-brackets.md │ └── unmatched-curly.md ├── code-of-conduct │ ├── error0 │ │ ├── code-of-conduct.md │ │ └── readme.md │ ├── error1 │ │ ├── code-of-conduct.md │ │ └── readme.md │ ├── error2 │ │ ├── code-of-conduct.md │ │ └── readme.md │ ├── valid0 │ │ └── readme.md │ ├── valid1 │ │ ├── code-of-conduct.md │ │ └── readme.md │ ├── valid2 │ │ ├── code-of-conduct.md │ │ ├── package.json │ │ └── readme.md │ ├── valid3 │ │ ├── code_of_conduct.md │ │ └── readme.md │ └── valid4 │ │ ├── .github │ │ └── code-of-conduct.md │ │ └── readme.md ├── contributing │ ├── error0 │ │ └── readme.md │ ├── error1 │ │ ├── contributing.md │ │ └── readme.md │ ├── valid0 │ │ ├── CONTRIBUTING.md │ │ └── readme.md │ ├── valid1 │ │ ├── contributing.md │ │ └── readme.md │ ├── valid2 │ │ ├── .github │ │ │ └── CONTRIBUTING.md │ │ └── readme.md │ └── valid3 │ │ ├── .github │ │ └── contributing.md │ │ └── readme.md ├── double-link │ ├── duplicate-anchors.md │ ├── duplicate-with-hash.md │ ├── duplicate.md │ ├── edge-cases.md │ ├── links-in-descriptions.md │ ├── no-duplicates.md │ ├── normalized-duplicates.md │ ├── repo-url-ignored.md │ └── unique-hashes.md ├── ellipsis.md ├── footnotes.md ├── git-repo-age │ └── 0.md ├── github-alerts.md ├── github │ └── 0.md ├── heading │ ├── error0.md │ ├── error1.md │ ├── error2.md │ ├── error3.md │ ├── success-h1.md │ ├── success-html.md │ ├── success0.md │ ├── success1.md │ └── success2.md ├── license │ ├── error0.md │ ├── error1.md │ ├── error2.md │ ├── error3.md │ ├── error4.md │ └── success0.md ├── list-item │ ├── 0.md │ ├── 1.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ └── 9.md ├── main.md ├── no-ci-badge │ └── 0.md ├── spell-check │ ├── ambiguous-words.md │ ├── error0.md │ └── success0.md └── toc │ ├── 0.md │ ├── 1.md │ ├── 10.md │ ├── 2.md │ ├── 3.md │ ├── 4.md │ ├── 5.md │ ├── 6.md │ ├── 7.md │ ├── 8.md │ ├── 9.md │ └── emoji-variation-selectors.md ├── footnotes.test.js ├── integration.test.js ├── lib └── find-author-name.test.js └── rules ├── apostrophe.test.js ├── badge.test.js ├── balanced-punctuation.test.js ├── code-of-conduct.test.js ├── contributing.test.js ├── double-link.test.js ├── ellipsis.test.js ├── git-repo-age.test.js ├── github-alerts.test.js ├── github.test.js ├── heading.test.js ├── license.test.js ├── list-item.test.js ├── no-ci-badge.test.js ├── no-repeat-item-in-description.test.js ├── snapshots ├── list-item.js.md ├── list-item.js.snap ├── spell-check.js.md └── spell-check.js.snap ├── spell-check.test.js └── toc.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | *.ai binary 3 | -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | yarn.lock 3 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/.gitmodules -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/cli.js -------------------------------------------------------------------------------- /config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/config.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/index.js -------------------------------------------------------------------------------- /lib/find-author-name.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/lib/find-author-name.js -------------------------------------------------------------------------------- /lib/find-readme-file.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/lib/find-readme-file.js -------------------------------------------------------------------------------- /lib/github-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/lib/github-api.js -------------------------------------------------------------------------------- /lib/identifier-allow-list.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/lib/identifier-allow-list.js -------------------------------------------------------------------------------- /lib/spell-check-rules.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/lib/spell-check-rules.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/license -------------------------------------------------------------------------------- /media/logo.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/media/logo.ai -------------------------------------------------------------------------------- /media/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/media/logo.png -------------------------------------------------------------------------------- /media/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/media/logo.svg -------------------------------------------------------------------------------- /media/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/media/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/readme.md -------------------------------------------------------------------------------- /rules/badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/badge.js -------------------------------------------------------------------------------- /rules/balanced-punctuation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/balanced-punctuation.js -------------------------------------------------------------------------------- /rules/code-of-conduct.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/code-of-conduct.js -------------------------------------------------------------------------------- /rules/contributing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/contributing.js -------------------------------------------------------------------------------- /rules/double-link.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/double-link.js -------------------------------------------------------------------------------- /rules/git-repo-age.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/git-repo-age.js -------------------------------------------------------------------------------- /rules/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/github.js -------------------------------------------------------------------------------- /rules/heading.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/heading.js -------------------------------------------------------------------------------- /rules/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/index.js -------------------------------------------------------------------------------- /rules/license.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/license.js -------------------------------------------------------------------------------- /rules/list-item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/list-item.js -------------------------------------------------------------------------------- /rules/no-ci-badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/no-ci-badge.js -------------------------------------------------------------------------------- /rules/no-repeat-item-in-description.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/no-repeat-item-in-description.js -------------------------------------------------------------------------------- /rules/spell-check.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/spell-check.js -------------------------------------------------------------------------------- /rules/toc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/rules/toc.js -------------------------------------------------------------------------------- /test/_lint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/_lint.js -------------------------------------------------------------------------------- /test/api.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/api.test.js -------------------------------------------------------------------------------- /test/cli.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/cli.test.js -------------------------------------------------------------------------------- /test/fixtures/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/.editorconfig -------------------------------------------------------------------------------- /test/fixtures/badge/error0.md: -------------------------------------------------------------------------------- 1 | # Foo 2 | 3 | > Bar 4 | -------------------------------------------------------------------------------- /test/fixtures/badge/error1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/badge/error1.md -------------------------------------------------------------------------------- /test/fixtures/badge/error2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/badge/error2.md -------------------------------------------------------------------------------- /test/fixtures/badge/success0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/badge/success0.md -------------------------------------------------------------------------------- /test/fixtures/badge/success1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/badge/success1.md -------------------------------------------------------------------------------- /test/fixtures/badge/success2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/badge/success2.md -------------------------------------------------------------------------------- /test/fixtures/balanced-punctuation/actual-curly-quote.md: -------------------------------------------------------------------------------- 1 | # Test 2 | 3 | Has unmatched “curly quote here. 4 | -------------------------------------------------------------------------------- /test/fixtures/balanced-punctuation/angle-brackets.md: -------------------------------------------------------------------------------- 1 | # Test 2 | 3 | Test with unmatched ⟨angle bracket. 4 | -------------------------------------------------------------------------------- /test/fixtures/balanced-punctuation/unmatched-curly.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/balanced-punctuation/unmatched-curly.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/error0/code-of-conduct.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/error0/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/error1/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/code-of-conduct/error1/code-of-conduct.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/error1/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/error2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/code-of-conduct/error2/code-of-conduct.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/error2/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid0/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid1/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/code-of-conduct/valid1/code-of-conduct.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid1/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid2/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/code-of-conduct/valid2/code-of-conduct.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid2/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "repository": "sindresorhus/awesome-lint" 3 | } -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid2/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid3/code_of_conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/code-of-conduct/valid3/code_of_conduct.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid3/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid4/.github/code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/code-of-conduct/valid4/.github/code-of-conduct.md -------------------------------------------------------------------------------- /test/fixtures/code-of-conduct/valid4/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/error0/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/error1/contributing.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/error1/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/valid0/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/contributing/valid0/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/fixtures/contributing/valid0/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/valid1/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/contributing/valid1/contributing.md -------------------------------------------------------------------------------- /test/fixtures/contributing/valid1/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/valid2/.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/contributing/valid2/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /test/fixtures/contributing/valid2/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/contributing/valid3/.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/contributing/valid3/.github/contributing.md -------------------------------------------------------------------------------- /test/fixtures/contributing/valid3/readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/double-link/duplicate-anchors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/duplicate-anchors.md -------------------------------------------------------------------------------- /test/fixtures/double-link/duplicate-with-hash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/duplicate-with-hash.md -------------------------------------------------------------------------------- /test/fixtures/double-link/duplicate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/duplicate.md -------------------------------------------------------------------------------- /test/fixtures/double-link/edge-cases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/edge-cases.md -------------------------------------------------------------------------------- /test/fixtures/double-link/links-in-descriptions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/links-in-descriptions.md -------------------------------------------------------------------------------- /test/fixtures/double-link/no-duplicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/no-duplicates.md -------------------------------------------------------------------------------- /test/fixtures/double-link/normalized-duplicates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/normalized-duplicates.md -------------------------------------------------------------------------------- /test/fixtures/double-link/repo-url-ignored.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/repo-url-ignored.md -------------------------------------------------------------------------------- /test/fixtures/double-link/unique-hashes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/double-link/unique-hashes.md -------------------------------------------------------------------------------- /test/fixtures/ellipsis.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/ellipsis.md -------------------------------------------------------------------------------- /test/fixtures/footnotes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/footnotes.md -------------------------------------------------------------------------------- /test/fixtures/git-repo-age/0.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/github-alerts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/github-alerts.md -------------------------------------------------------------------------------- /test/fixtures/github/0.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/fixtures/heading/error0.md: -------------------------------------------------------------------------------- 1 | > This is an awesome list! 2 | -------------------------------------------------------------------------------- /test/fixtures/heading/error1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/heading/error1.md -------------------------------------------------------------------------------- /test/fixtures/heading/error2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/heading/error2.md -------------------------------------------------------------------------------- /test/fixtures/heading/error3.md: -------------------------------------------------------------------------------- 1 | ## Improper Awesome List 2 | -------------------------------------------------------------------------------- /test/fixtures/heading/success-h1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/heading/success-h1.md -------------------------------------------------------------------------------- /test/fixtures/heading/success-html.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/heading/success-html.md -------------------------------------------------------------------------------- /test/fixtures/heading/success0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/heading/success0.md -------------------------------------------------------------------------------- /test/fixtures/heading/success1.md: -------------------------------------------------------------------------------- 1 | # AHA Acronyms Are Allowed 2 | -------------------------------------------------------------------------------- /test/fixtures/heading/success2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/heading/success2.md -------------------------------------------------------------------------------- /test/fixtures/license/error0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/license/error0.md -------------------------------------------------------------------------------- /test/fixtures/license/error1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/license/error1.md -------------------------------------------------------------------------------- /test/fixtures/license/error2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/license/error2.md -------------------------------------------------------------------------------- /test/fixtures/license/error3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/license/error3.md -------------------------------------------------------------------------------- /test/fixtures/license/error4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/license/error4.md -------------------------------------------------------------------------------- /test/fixtures/license/success0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/license/success0.md -------------------------------------------------------------------------------- /test/fixtures/list-item/0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/0.md -------------------------------------------------------------------------------- /test/fixtures/list-item/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/1.md -------------------------------------------------------------------------------- /test/fixtures/list-item/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/2.md -------------------------------------------------------------------------------- /test/fixtures/list-item/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/3.md -------------------------------------------------------------------------------- /test/fixtures/list-item/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/4.md -------------------------------------------------------------------------------- /test/fixtures/list-item/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/5.md -------------------------------------------------------------------------------- /test/fixtures/list-item/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/6.md -------------------------------------------------------------------------------- /test/fixtures/list-item/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/7.md -------------------------------------------------------------------------------- /test/fixtures/list-item/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/8.md -------------------------------------------------------------------------------- /test/fixtures/list-item/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/list-item/9.md -------------------------------------------------------------------------------- /test/fixtures/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/main.md -------------------------------------------------------------------------------- /test/fixtures/no-ci-badge/0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/no-ci-badge/0.md -------------------------------------------------------------------------------- /test/fixtures/spell-check/ambiguous-words.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/spell-check/ambiguous-words.md -------------------------------------------------------------------------------- /test/fixtures/spell-check/error0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/spell-check/error0.md -------------------------------------------------------------------------------- /test/fixtures/spell-check/success0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/spell-check/success0.md -------------------------------------------------------------------------------- /test/fixtures/toc/0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/0.md -------------------------------------------------------------------------------- /test/fixtures/toc/1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/1.md -------------------------------------------------------------------------------- /test/fixtures/toc/10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/10.md -------------------------------------------------------------------------------- /test/fixtures/toc/2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/2.md -------------------------------------------------------------------------------- /test/fixtures/toc/3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/3.md -------------------------------------------------------------------------------- /test/fixtures/toc/4.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/4.md -------------------------------------------------------------------------------- /test/fixtures/toc/5.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/5.md -------------------------------------------------------------------------------- /test/fixtures/toc/6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/6.md -------------------------------------------------------------------------------- /test/fixtures/toc/7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/7.md -------------------------------------------------------------------------------- /test/fixtures/toc/8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/8.md -------------------------------------------------------------------------------- /test/fixtures/toc/9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/9.md -------------------------------------------------------------------------------- /test/fixtures/toc/emoji-variation-selectors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/fixtures/toc/emoji-variation-selectors.md -------------------------------------------------------------------------------- /test/footnotes.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/footnotes.test.js -------------------------------------------------------------------------------- /test/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/integration.test.js -------------------------------------------------------------------------------- /test/lib/find-author-name.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/lib/find-author-name.test.js -------------------------------------------------------------------------------- /test/rules/apostrophe.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/apostrophe.test.js -------------------------------------------------------------------------------- /test/rules/badge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/badge.test.js -------------------------------------------------------------------------------- /test/rules/balanced-punctuation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/balanced-punctuation.test.js -------------------------------------------------------------------------------- /test/rules/code-of-conduct.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/code-of-conduct.test.js -------------------------------------------------------------------------------- /test/rules/contributing.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/contributing.test.js -------------------------------------------------------------------------------- /test/rules/double-link.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/double-link.test.js -------------------------------------------------------------------------------- /test/rules/ellipsis.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/ellipsis.test.js -------------------------------------------------------------------------------- /test/rules/git-repo-age.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/git-repo-age.test.js -------------------------------------------------------------------------------- /test/rules/github-alerts.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/github-alerts.test.js -------------------------------------------------------------------------------- /test/rules/github.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/github.test.js -------------------------------------------------------------------------------- /test/rules/heading.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/heading.test.js -------------------------------------------------------------------------------- /test/rules/license.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/license.test.js -------------------------------------------------------------------------------- /test/rules/list-item.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/list-item.test.js -------------------------------------------------------------------------------- /test/rules/no-ci-badge.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/no-ci-badge.test.js -------------------------------------------------------------------------------- /test/rules/no-repeat-item-in-description.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/no-repeat-item-in-description.test.js -------------------------------------------------------------------------------- /test/rules/snapshots/list-item.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/snapshots/list-item.js.md -------------------------------------------------------------------------------- /test/rules/snapshots/list-item.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/snapshots/list-item.js.snap -------------------------------------------------------------------------------- /test/rules/snapshots/spell-check.js.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/snapshots/spell-check.js.md -------------------------------------------------------------------------------- /test/rules/snapshots/spell-check.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/snapshots/spell-check.js.snap -------------------------------------------------------------------------------- /test/rules/spell-check.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/spell-check.test.js -------------------------------------------------------------------------------- /test/rules/toc.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sindresorhus/awesome-lint/HEAD/test/rules/toc.test.js --------------------------------------------------------------------------------