├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitattributes ├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .prettierignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── index.js ├── package.json ├── remark-lint-nodejs-links.js ├── remark-lint-nodejs-yaml-comments.js └── test ├── fixtures ├── fail-nodejs-yaml-comments.md ├── fail-prohibited-string.md ├── formatting-input.md ├── formatting-output.md └── ok.md └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Enforce Unix newlines 2 | * text=auto eol=lf 3 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | tmp/ 2 | *.md 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- 1 | This project has a [Code of Conduct](CODE_OF_CONDUCT.md). 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/package.json -------------------------------------------------------------------------------- /remark-lint-nodejs-links.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/remark-lint-nodejs-links.js -------------------------------------------------------------------------------- /remark-lint-nodejs-yaml-comments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/remark-lint-nodejs-yaml-comments.js -------------------------------------------------------------------------------- /test/fixtures/fail-nodejs-yaml-comments.md: -------------------------------------------------------------------------------- 1 | # Title 2 | 4 | -------------------------------------------------------------------------------- /test/fixtures/fail-prohibited-string.md: -------------------------------------------------------------------------------- 1 | # File that should fail 2 | 3 | Welcome to Node! 4 | -------------------------------------------------------------------------------- /test/fixtures/formatting-input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/test/fixtures/formatting-input.md -------------------------------------------------------------------------------- /test/fixtures/formatting-output.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/test/fixtures/formatting-output.md -------------------------------------------------------------------------------- /test/fixtures/ok.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/patrickm68/Node-preset-lint/HEAD/test/test.js --------------------------------------------------------------------------------