├── .c8rc.json ├── .editorconfig ├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── .prettierignore ├── .prettierrc.yaml ├── .remarkrc.yaml ├── LICENSE.md ├── README.md ├── eslint.config.js ├── examples ├── .mdxlintrc.yaml ├── lint-error.mdx ├── ok.mdx └── syntax-error.mdx ├── lib ├── bin.js ├── mdxlint.d.ts └── mdxlint.js ├── logo.svg ├── package.json ├── test ├── bin.js └── mdxlint.js └── tsconfig.json /.c8rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/.c8rc.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.mdx 2 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/.prettierrc.yaml -------------------------------------------------------------------------------- /.remarkrc.yaml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - remark-preset-remcohaszing 3 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/README.md -------------------------------------------------------------------------------- /eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/eslint.config.js -------------------------------------------------------------------------------- /examples/.mdxlintrc.yaml: -------------------------------------------------------------------------------- 1 | plugins: 2 | - remark-preset-remcohaszing 3 | -------------------------------------------------------------------------------- /examples/lint-error.mdx: -------------------------------------------------------------------------------- 1 | # Lint Error 2 | 3 | [unknown link reference][] 4 | -------------------------------------------------------------------------------- /examples/ok.mdx: -------------------------------------------------------------------------------- 1 | # Ok 2 | 3 | No linting errors here. 4 | -------------------------------------------------------------------------------- /examples/syntax-error.mdx: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /lib/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/lib/bin.js -------------------------------------------------------------------------------- /lib/mdxlint.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/lib/mdxlint.d.ts -------------------------------------------------------------------------------- /lib/mdxlint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/lib/mdxlint.js -------------------------------------------------------------------------------- /logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/logo.svg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/package.json -------------------------------------------------------------------------------- /test/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/test/bin.js -------------------------------------------------------------------------------- /test/mdxlint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/test/mdxlint.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/remcohaszing/mdxlint/HEAD/tsconfig.json --------------------------------------------------------------------------------