├── .editorconfig ├── .github └── workflows │ ├── bb.yml │ └── main.yml ├── .gitignore ├── .npmrc ├── .prettierignore ├── .remarkrc.js ├── changelog.md ├── doc ├── comparison-to-markdownlint.md ├── create-a-custom-rule.md └── rules.md ├── license ├── logo.svg ├── package.json ├── packages ├── remark-lint-blockquote-indentation │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-checkbox-character-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-checkbox-content-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-code-block-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-correct-media-syntax │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-definition-case │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-definition-sort │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-definition-spacing │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-directive-attribute-sort │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-directive-collapsed-attribute │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-directive-quote-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-directive-shortcut-attribute │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-directive-unique-attribute-name │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-emphasis-marker │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-fenced-code-flag │ ├── .npmrc │ ├── github-linguist-info.js │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-fenced-code-marker │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-file-extension │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-final-definition │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-final-newline │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-first-heading-level │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-hard-break-spaces │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-heading-increment │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-heading-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-linebreak-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-link-title-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-list-item-bullet-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-list-item-content-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-list-item-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-list-item-spacing │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-maximum-heading-length │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-maximum-line-length │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-mdx-jsx-attribute-sort │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-mdx-jsx-no-void-children │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-mdx-jsx-quote-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-mdx-jsx-self-close │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-mdx-jsx-shorthand-attribute │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-mdx-jsx-unique-attribute-name │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-media-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-blockquote-without-marker │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-consecutive-blank-lines │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-duplicate-defined-urls │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-duplicate-definitions │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-duplicate-headings-in-section │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-duplicate-headings │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-emphasis-as-heading │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-empty-url │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-file-name-articles │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-file-name-consecutive-dashes │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-file-name-irregular-characters │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-file-name-mixed-case │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-file-name-outer-dashes │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-heading-content-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-heading-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-heading-like-paragraph │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-heading-punctuation │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-hidden-table-cell │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-html │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-literal-urls │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-missing-blank-lines │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-multiple-toplevel-headings │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-paragraph-content-indent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-reference-like-url │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-shell-dollars │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-shortcut-reference-image │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-shortcut-reference-link │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-table-indentation │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-tabs │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-undefined-references │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-unneeded-full-reference-image │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-unneeded-full-reference-link │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-no-unused-definitions │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-ordered-list-marker-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-ordered-list-marker-value │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-rule-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-strikethrough-marker │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-strong-marker │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-table-cell-padding │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-table-pipe-alignment │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-table-pipes │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint-unordered-list-marker-style │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-lint │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-preset-lint-consistent │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-preset-lint-markdown-style-guide │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── remark-preset-lint-recommended │ ├── .npmrc │ ├── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json └── unified-lint-rule │ ├── .npmrc │ ├── index.js │ ├── lib │ └── index.js │ ├── package.json │ ├── readme.md │ └── tsconfig.json ├── readme.md ├── screenshot.png ├── script ├── build-github-code-flag.js ├── build-packages.js ├── info.js ├── pipeline-package.js └── plugin │ ├── list-of-plugins.js │ └── list-of-presets.js ├── test.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/bb.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/.github/workflows/bb.yml -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | *.md 3 | -------------------------------------------------------------------------------- /.remarkrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/.remarkrc.js -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/changelog.md -------------------------------------------------------------------------------- /doc/comparison-to-markdownlint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/doc/comparison-to-markdownlint.md -------------------------------------------------------------------------------- /doc/create-a-custom-rule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/doc/create-a-custom-rule.md -------------------------------------------------------------------------------- /doc/rules.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/doc/rules.md -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/license -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/package.json -------------------------------------------------------------------------------- /packages/remark-lint-blockquote-indentation/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-blockquote-indentation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-blockquote-indentation/index.js -------------------------------------------------------------------------------- /packages/remark-lint-blockquote-indentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-blockquote-indentation/package.json -------------------------------------------------------------------------------- /packages/remark-lint-blockquote-indentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-blockquote-indentation/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-blockquote-indentation/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-character-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-character-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-checkbox-character-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-character-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-checkbox-character-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-character-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-checkbox-character-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-character-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-content-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-content-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-checkbox-content-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-content-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-checkbox-content-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-content-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-checkbox-content-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-checkbox-content-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-code-block-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-code-block-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-code-block-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-code-block-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-code-block-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-code-block-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-code-block-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-code-block-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-correct-media-syntax/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-correct-media-syntax/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-correct-media-syntax/index.js -------------------------------------------------------------------------------- /packages/remark-lint-correct-media-syntax/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-correct-media-syntax/package.json -------------------------------------------------------------------------------- /packages/remark-lint-correct-media-syntax/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-correct-media-syntax/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-correct-media-syntax/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-definition-case/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-definition-case/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-case/index.js -------------------------------------------------------------------------------- /packages/remark-lint-definition-case/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-case/package.json -------------------------------------------------------------------------------- /packages/remark-lint-definition-case/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-case/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-definition-case/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-definition-sort/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-definition-sort/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-sort/index.js -------------------------------------------------------------------------------- /packages/remark-lint-definition-sort/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-sort/package.json -------------------------------------------------------------------------------- /packages/remark-lint-definition-sort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-sort/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-definition-sort/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-definition-spacing/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-definition-spacing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-spacing/index.js -------------------------------------------------------------------------------- /packages/remark-lint-definition-spacing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-spacing/package.json -------------------------------------------------------------------------------- /packages/remark-lint-definition-spacing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-definition-spacing/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-definition-spacing/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-attribute-sort/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-attribute-sort/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-attribute-sort/index.js -------------------------------------------------------------------------------- /packages/remark-lint-directive-attribute-sort/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-attribute-sort/package.json -------------------------------------------------------------------------------- /packages/remark-lint-directive-attribute-sort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-attribute-sort/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-directive-attribute-sort/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-collapsed-attribute/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-collapsed-attribute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-collapsed-attribute/index.js -------------------------------------------------------------------------------- /packages/remark-lint-directive-collapsed-attribute/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-collapsed-attribute/package.json -------------------------------------------------------------------------------- /packages/remark-lint-directive-collapsed-attribute/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-collapsed-attribute/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-directive-collapsed-attribute/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-quote-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-quote-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-quote-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-directive-quote-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-quote-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-directive-quote-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-quote-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-directive-quote-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-shortcut-attribute/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-shortcut-attribute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-shortcut-attribute/index.js -------------------------------------------------------------------------------- /packages/remark-lint-directive-shortcut-attribute/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-shortcut-attribute/package.json -------------------------------------------------------------------------------- /packages/remark-lint-directive-shortcut-attribute/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-shortcut-attribute/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-directive-shortcut-attribute/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-unique-attribute-name/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-directive-unique-attribute-name/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-unique-attribute-name/index.js -------------------------------------------------------------------------------- /packages/remark-lint-directive-unique-attribute-name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-unique-attribute-name/package.json -------------------------------------------------------------------------------- /packages/remark-lint-directive-unique-attribute-name/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-directive-unique-attribute-name/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-directive-unique-attribute-name/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-emphasis-marker/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-emphasis-marker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-emphasis-marker/index.js -------------------------------------------------------------------------------- /packages/remark-lint-emphasis-marker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-emphasis-marker/package.json -------------------------------------------------------------------------------- /packages/remark-lint-emphasis-marker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-emphasis-marker/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-emphasis-marker/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-flag/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-flag/github-linguist-info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-flag/github-linguist-info.js -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-flag/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-flag/index.js -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-flag/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-flag/package.json -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-flag/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-flag/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-flag/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-marker/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-marker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-marker/index.js -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-marker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-marker/package.json -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-marker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-fenced-code-marker/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-fenced-code-marker/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-file-extension/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-file-extension/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-file-extension/index.js -------------------------------------------------------------------------------- /packages/remark-lint-file-extension/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-file-extension/package.json -------------------------------------------------------------------------------- /packages/remark-lint-file-extension/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-file-extension/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-file-extension/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-final-definition/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-final-definition/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-final-definition/index.js -------------------------------------------------------------------------------- /packages/remark-lint-final-definition/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-final-definition/package.json -------------------------------------------------------------------------------- /packages/remark-lint-final-definition/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-final-definition/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-final-definition/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-final-newline/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-final-newline/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-final-newline/index.js -------------------------------------------------------------------------------- /packages/remark-lint-final-newline/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-final-newline/package.json -------------------------------------------------------------------------------- /packages/remark-lint-final-newline/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-final-newline/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-final-newline/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-first-heading-level/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-first-heading-level/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-first-heading-level/index.js -------------------------------------------------------------------------------- /packages/remark-lint-first-heading-level/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-first-heading-level/package.json -------------------------------------------------------------------------------- /packages/remark-lint-first-heading-level/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-first-heading-level/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-first-heading-level/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-hard-break-spaces/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-hard-break-spaces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-hard-break-spaces/index.js -------------------------------------------------------------------------------- /packages/remark-lint-hard-break-spaces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-hard-break-spaces/package.json -------------------------------------------------------------------------------- /packages/remark-lint-hard-break-spaces/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-hard-break-spaces/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-hard-break-spaces/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-heading-increment/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-heading-increment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-heading-increment/index.js -------------------------------------------------------------------------------- /packages/remark-lint-heading-increment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-heading-increment/package.json -------------------------------------------------------------------------------- /packages/remark-lint-heading-increment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-heading-increment/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-heading-increment/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-heading-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-heading-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-heading-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-heading-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-heading-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-heading-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-heading-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-heading-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-linebreak-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-linebreak-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-linebreak-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-linebreak-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-linebreak-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-linebreak-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-linebreak-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-linebreak-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-link-title-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-link-title-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-link-title-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-link-title-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-link-title-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-link-title-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-link-title-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-link-title-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-bullet-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-bullet-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-bullet-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-list-item-bullet-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-bullet-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-list-item-bullet-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-bullet-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-list-item-bullet-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-content-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-content-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-content-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-list-item-content-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-content-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-list-item-content-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-content-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-list-item-content-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-list-item-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-list-item-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-list-item-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-spacing/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-list-item-spacing/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-spacing/index.js -------------------------------------------------------------------------------- /packages/remark-lint-list-item-spacing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-spacing/package.json -------------------------------------------------------------------------------- /packages/remark-lint-list-item-spacing/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-list-item-spacing/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-list-item-spacing/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-maximum-heading-length/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-maximum-heading-length/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-maximum-heading-length/index.js -------------------------------------------------------------------------------- /packages/remark-lint-maximum-heading-length/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-maximum-heading-length/package.json -------------------------------------------------------------------------------- /packages/remark-lint-maximum-heading-length/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-maximum-heading-length/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-maximum-heading-length/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-maximum-line-length/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-maximum-line-length/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-maximum-line-length/index.js -------------------------------------------------------------------------------- /packages/remark-lint-maximum-line-length/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-maximum-line-length/package.json -------------------------------------------------------------------------------- /packages/remark-lint-maximum-line-length/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-maximum-line-length/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-maximum-line-length/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-attribute-sort/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-attribute-sort/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-attribute-sort/index.js -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-attribute-sort/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-attribute-sort/package.json -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-attribute-sort/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-attribute-sort/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-attribute-sort/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-no-void-children/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-no-void-children/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-no-void-children/index.js -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-no-void-children/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-no-void-children/package.json -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-no-void-children/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-no-void-children/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-no-void-children/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-quote-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-quote-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-quote-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-quote-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-quote-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-quote-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-quote-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-quote-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-self-close/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-self-close/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-self-close/index.js -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-self-close/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-self-close/package.json -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-self-close/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-self-close/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-self-close/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-shorthand-attribute/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-shorthand-attribute/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-shorthand-attribute/index.js -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-shorthand-attribute/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-shorthand-attribute/package.json -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-shorthand-attribute/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-shorthand-attribute/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-shorthand-attribute/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-unique-attribute-name/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-unique-attribute-name/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-unique-attribute-name/index.js -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-unique-attribute-name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-unique-attribute-name/package.json -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-unique-attribute-name/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-mdx-jsx-unique-attribute-name/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-mdx-jsx-unique-attribute-name/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-media-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-media-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-media-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-media-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-media-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-media-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-media-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-media-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-blockquote-without-marker/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-blockquote-without-marker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-blockquote-without-marker/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-blockquote-without-marker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-blockquote-without-marker/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-blockquote-without-marker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-blockquote-without-marker/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-blockquote-without-marker/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-consecutive-blank-lines/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-consecutive-blank-lines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-consecutive-blank-lines/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-consecutive-blank-lines/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-consecutive-blank-lines/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-consecutive-blank-lines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-consecutive-blank-lines/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-consecutive-blank-lines/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-defined-urls/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-defined-urls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-defined-urls/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-defined-urls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-defined-urls/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-defined-urls/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-defined-urls/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-defined-urls/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-definitions/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-definitions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-definitions/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-definitions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-definitions/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-definitions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-definitions/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-definitions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings-in-section/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings-in-section/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-headings-in-section/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings-in-section/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-headings-in-section/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings-in-section/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-headings-in-section/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings-in-section/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-headings/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-headings/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-duplicate-headings/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-duplicate-headings/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-emphasis-as-heading/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-emphasis-as-heading/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-emphasis-as-heading/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-emphasis-as-heading/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-emphasis-as-heading/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-emphasis-as-heading/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-emphasis-as-heading/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-emphasis-as-heading/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-empty-url/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-empty-url/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-empty-url/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-empty-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-empty-url/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-empty-url/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-empty-url/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-empty-url/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-articles/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-articles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-articles/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-articles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-articles/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-articles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-articles/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-articles/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-consecutive-dashes/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-consecutive-dashes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-consecutive-dashes/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-consecutive-dashes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-consecutive-dashes/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-consecutive-dashes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-consecutive-dashes/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-consecutive-dashes/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-irregular-characters/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-irregular-characters/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-irregular-characters/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-irregular-characters/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-irregular-characters/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-irregular-characters/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-irregular-characters/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-irregular-characters/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-mixed-case/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-mixed-case/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-mixed-case/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-mixed-case/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-mixed-case/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-mixed-case/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-mixed-case/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-mixed-case/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-outer-dashes/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-outer-dashes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-outer-dashes/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-outer-dashes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-outer-dashes/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-outer-dashes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-file-name-outer-dashes/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-file-name-outer-dashes/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-content-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-content-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-content-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-content-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-content-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-content-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-content-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-content-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-like-paragraph/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-like-paragraph/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-like-paragraph/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-like-paragraph/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-like-paragraph/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-like-paragraph/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-like-paragraph/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-like-paragraph/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-punctuation/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-punctuation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-punctuation/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-punctuation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-punctuation/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-punctuation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-heading-punctuation/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-heading-punctuation/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-hidden-table-cell/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-hidden-table-cell/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-hidden-table-cell/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-hidden-table-cell/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-hidden-table-cell/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-hidden-table-cell/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-hidden-table-cell/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-hidden-table-cell/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-html/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-html/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-html/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-html/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-html/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-html/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-html/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-html/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-literal-urls/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-literal-urls/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-literal-urls/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-literal-urls/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-literal-urls/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-literal-urls/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-literal-urls/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-literal-urls/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-missing-blank-lines/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-missing-blank-lines/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-missing-blank-lines/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-missing-blank-lines/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-missing-blank-lines/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-missing-blank-lines/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-missing-blank-lines/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-missing-blank-lines/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-multiple-toplevel-headings/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-multiple-toplevel-headings/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-multiple-toplevel-headings/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-multiple-toplevel-headings/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-multiple-toplevel-headings/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-multiple-toplevel-headings/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-multiple-toplevel-headings/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-multiple-toplevel-headings/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-paragraph-content-indent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-paragraph-content-indent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-paragraph-content-indent/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-paragraph-content-indent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-paragraph-content-indent/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-paragraph-content-indent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-paragraph-content-indent/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-paragraph-content-indent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-reference-like-url/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-reference-like-url/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-reference-like-url/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-reference-like-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-reference-like-url/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-reference-like-url/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-reference-like-url/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-reference-like-url/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-shell-dollars/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-shell-dollars/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shell-dollars/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-shell-dollars/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shell-dollars/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-shell-dollars/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shell-dollars/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-shell-dollars/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-image/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shortcut-reference-image/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-image/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shortcut-reference-image/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-image/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shortcut-reference-image/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-image/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-link/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shortcut-reference-link/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shortcut-reference-link/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-link/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-shortcut-reference-link/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-shortcut-reference-link/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-table-indentation/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-table-indentation/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-table-indentation/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-table-indentation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-table-indentation/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-table-indentation/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-table-indentation/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-table-indentation/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-tabs/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-tabs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-tabs/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-tabs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-tabs/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-tabs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-tabs/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-tabs/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-undefined-references/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-undefined-references/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-undefined-references/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-undefined-references/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-undefined-references/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-undefined-references/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-undefined-references/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-undefined-references/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-image/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-image/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unneeded-full-reference-image/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-image/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unneeded-full-reference-image/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-image/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unneeded-full-reference-image/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-image/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-link/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-link/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unneeded-full-reference-link/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-link/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unneeded-full-reference-link/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-link/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unneeded-full-reference-link/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-unneeded-full-reference-link/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-no-unused-definitions/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-no-unused-definitions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unused-definitions/index.js -------------------------------------------------------------------------------- /packages/remark-lint-no-unused-definitions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unused-definitions/package.json -------------------------------------------------------------------------------- /packages/remark-lint-no-unused-definitions/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-no-unused-definitions/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-no-unused-definitions/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-ordered-list-marker-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-ordered-list-marker-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-ordered-list-marker-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-value/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-value/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-ordered-list-marker-value/index.js -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-value/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-ordered-list-marker-value/package.json -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-value/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-ordered-list-marker-value/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-ordered-list-marker-value/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-rule-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-rule-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-rule-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-rule-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-rule-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-rule-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-rule-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-rule-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-strikethrough-marker/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-strikethrough-marker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-strikethrough-marker/index.js -------------------------------------------------------------------------------- /packages/remark-lint-strikethrough-marker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-strikethrough-marker/package.json -------------------------------------------------------------------------------- /packages/remark-lint-strikethrough-marker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-strikethrough-marker/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-strikethrough-marker/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-strong-marker/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-strong-marker/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-strong-marker/index.js -------------------------------------------------------------------------------- /packages/remark-lint-strong-marker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-strong-marker/package.json -------------------------------------------------------------------------------- /packages/remark-lint-strong-marker/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-strong-marker/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-strong-marker/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-table-cell-padding/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-table-cell-padding/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-cell-padding/index.js -------------------------------------------------------------------------------- /packages/remark-lint-table-cell-padding/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-cell-padding/package.json -------------------------------------------------------------------------------- /packages/remark-lint-table-cell-padding/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-cell-padding/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-table-cell-padding/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-table-pipe-alignment/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-table-pipe-alignment/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-pipe-alignment/index.js -------------------------------------------------------------------------------- /packages/remark-lint-table-pipe-alignment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-pipe-alignment/package.json -------------------------------------------------------------------------------- /packages/remark-lint-table-pipe-alignment/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-pipe-alignment/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-table-pipe-alignment/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-table-pipes/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-table-pipes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-pipes/index.js -------------------------------------------------------------------------------- /packages/remark-lint-table-pipes/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-pipes/package.json -------------------------------------------------------------------------------- /packages/remark-lint-table-pipes/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-table-pipes/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-table-pipes/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint-unordered-list-marker-style/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint-unordered-list-marker-style/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-unordered-list-marker-style/index.js -------------------------------------------------------------------------------- /packages/remark-lint-unordered-list-marker-style/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-unordered-list-marker-style/package.json -------------------------------------------------------------------------------- /packages/remark-lint-unordered-list-marker-style/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint-unordered-list-marker-style/readme.md -------------------------------------------------------------------------------- /packages/remark-lint-unordered-list-marker-style/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-lint/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-lint/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint/index.js -------------------------------------------------------------------------------- /packages/remark-lint/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint/package.json -------------------------------------------------------------------------------- /packages/remark-lint/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-lint/readme.md -------------------------------------------------------------------------------- /packages/remark-lint/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-preset-lint-consistent/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-preset-lint-consistent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-consistent/index.js -------------------------------------------------------------------------------- /packages/remark-preset-lint-consistent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-consistent/package.json -------------------------------------------------------------------------------- /packages/remark-preset-lint-consistent/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-consistent/readme.md -------------------------------------------------------------------------------- /packages/remark-preset-lint-consistent/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-preset-lint-markdown-style-guide/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-preset-lint-markdown-style-guide/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-markdown-style-guide/index.js -------------------------------------------------------------------------------- /packages/remark-preset-lint-markdown-style-guide/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-markdown-style-guide/package.json -------------------------------------------------------------------------------- /packages/remark-preset-lint-markdown-style-guide/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-markdown-style-guide/readme.md -------------------------------------------------------------------------------- /packages/remark-preset-lint-markdown-style-guide/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/remark-preset-lint-recommended/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/remark-preset-lint-recommended/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-recommended/index.js -------------------------------------------------------------------------------- /packages/remark-preset-lint-recommended/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-recommended/package.json -------------------------------------------------------------------------------- /packages/remark-preset-lint-recommended/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/remark-preset-lint-recommended/readme.md -------------------------------------------------------------------------------- /packages/remark-preset-lint-recommended/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /packages/unified-lint-rule/.npmrc: -------------------------------------------------------------------------------- 1 | ignore-scripts=true 2 | package-lock=false 3 | -------------------------------------------------------------------------------- /packages/unified-lint-rule/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/unified-lint-rule/index.js -------------------------------------------------------------------------------- /packages/unified-lint-rule/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/unified-lint-rule/lib/index.js -------------------------------------------------------------------------------- /packages/unified-lint-rule/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/unified-lint-rule/package.json -------------------------------------------------------------------------------- /packages/unified-lint-rule/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/packages/unified-lint-rule/readme.md -------------------------------------------------------------------------------- /packages/unified-lint-rule/tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../tsconfig.json" 3 | } 4 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/readme.md -------------------------------------------------------------------------------- /screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/screenshot.png -------------------------------------------------------------------------------- /script/build-github-code-flag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/script/build-github-code-flag.js -------------------------------------------------------------------------------- /script/build-packages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/script/build-packages.js -------------------------------------------------------------------------------- /script/info.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/script/info.js -------------------------------------------------------------------------------- /script/pipeline-package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/script/pipeline-package.js -------------------------------------------------------------------------------- /script/plugin/list-of-plugins.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/script/plugin/list-of-plugins.js -------------------------------------------------------------------------------- /script/plugin/list-of-presets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/script/plugin/list-of-presets.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/test.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remarkjs/remark-lint/HEAD/tsconfig.json --------------------------------------------------------------------------------