markdownlint-cli2
Advanced tools
# Changelog | ||
## 0.18.1 | ||
- Update dependencies (including `markdownlint`) | ||
## 0.18.0 | ||
@@ -4,0 +8,0 @@ |
{ | ||
"name": "markdownlint-cli2", | ||
"version": "0.18.0", | ||
"version": "0.18.1", | ||
"description": "A fast, flexible, configuration-based command-line interface for linting Markdown/CommonMark files with the `markdownlint` library", | ||
@@ -95,3 +95,3 @@ "author": { | ||
"eslint": "9.26.0", | ||
"eslint-plugin-jsdoc": "50.6.11", | ||
"eslint-plugin-jsdoc": "50.6.16", | ||
"eslint-plugin-n": "17.18.0", | ||
@@ -109,3 +109,3 @@ "eslint-plugin-unicorn": "59.0.1", | ||
"markdownlint-rule-extended-ascii": "0.2.1", | ||
"nano-spawn": "0.2.1", | ||
"nano-spawn": "1.0.1", | ||
"npm-run-all": "4.1.5", | ||
@@ -112,0 +112,0 @@ "terminal-link": "4.0.0" |
@@ -152,3 +152,3 @@ # markdownlint-cli2 | ||
```bash | ||
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.18.0 "**/*.md" "#node_modules" | ||
docker run -v $PWD:/workdir davidanson/markdownlint-cli2:v0.18.1 "**/*.md" "#node_modules" | ||
``` | ||
@@ -170,3 +170,3 @@ | ||
```bash | ||
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.18.0 "**/*.md" "#node_modules" | ||
docker run -w /myfolder -v $PWD:/myfolder davidanson/markdownlint-cli2:v0.18.1 "**/*.md" "#node_modules" | ||
``` | ||
@@ -420,3 +420,3 @@ | ||
- repo: https://github.com/DavidAnson/markdownlint-cli2 | ||
rev: v0.18.0 | ||
rev: v0.18.1 | ||
hooks: | ||
@@ -423,0 +423,0 @@ - id: markdownlint-cli2 |
{ | ||
"$schema": "http://json-schema.org/draft-07/schema#", | ||
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.18.0/schema/markdownlint-cli2-config-schema.json", | ||
"$id": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.18.1/schema/markdownlint-cli2-config-schema.json", | ||
"title": "markdownlint-cli2 configuration schema", | ||
@@ -10,3 +10,3 @@ "type": "object", | ||
"type": "string", | ||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.18.0/schema/markdownlint-cli2-config-schema.json" | ||
"default": "https://raw.githubusercontent.com/DavidAnson/markdownlint-cli2/v0.18.1/schema/markdownlint-cli2-config-schema.json" | ||
}, | ||
@@ -19,3 +19,3 @@ "config": { | ||
"customRules": { | ||
"description": "Module names or paths of custom rules to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Module names or paths of custom rules to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "array", | ||
@@ -30,3 +30,3 @@ "default": [], | ||
"fix": { | ||
"description": "Whether to enable fixing of linting errors reported by rules that emit fix information : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Whether to enable fixing of linting errors reported by rules that emit fix information : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "boolean", | ||
@@ -36,3 +36,3 @@ "default": false | ||
"frontMatter": { | ||
"description": "Regular expression used to match and ignore any front matter at the beginning of a document : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Regular expression used to match and ignore any front matter at the beginning of a document : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "string", | ||
@@ -43,3 +43,3 @@ "minLength": 1, | ||
"gitignore": { | ||
"description": "Whether to ignore files referenced by .gitignore (or glob expression) (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Whether to ignore files referenced by .gitignore (or glob expression) (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": [ | ||
@@ -52,3 +52,3 @@ "boolean", | ||
"globs": { | ||
"description": "Glob expressions to include when linting (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Glob expressions to include when linting (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "array", | ||
@@ -63,3 +63,3 @@ "default": [], | ||
"ignores": { | ||
"description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Glob expressions to ignore when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "array", | ||
@@ -74,3 +74,3 @@ "default": [], | ||
"markdownItPlugins": { | ||
"description": "markdown-it plugins to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "markdown-it plugins to load and use when linting : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "array", | ||
@@ -95,3 +95,3 @@ "default": [], | ||
"modulePaths": { | ||
"description": "Additional paths to resolve module locations from : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Additional paths to resolve module locations from : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "array", | ||
@@ -106,3 +106,3 @@ "default": [], | ||
"noBanner": { | ||
"description": "Whether to disable the display of the banner message and version numbers on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Whether to disable the display of the banner message and version numbers on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "boolean", | ||
@@ -112,3 +112,3 @@ "default": false | ||
"noInlineConfig": { | ||
"description": "Whether to disable support of HTML comments within Markdown content : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Whether to disable support of HTML comments within Markdown content : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "boolean", | ||
@@ -118,3 +118,3 @@ "default": false | ||
"noProgress": { | ||
"description": "Whether to disable the display of progress on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Whether to disable the display of progress on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "boolean", | ||
@@ -124,3 +124,3 @@ "default": false | ||
"outputFormatters": { | ||
"description": "Output formatters to load and use to customize markdownlint-cli2 output (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Output formatters to load and use to customize markdownlint-cli2 output (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "array", | ||
@@ -145,3 +145,3 @@ "default": [], | ||
"showFound": { | ||
"description": "Whether to show the list of found files on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.0/README.md#markdownlint-cli2jsonc", | ||
"description": "Whether to show the list of found files on stdout (only valid at the root) : https://github.com/DavidAnson/markdownlint-cli2/blob/v0.18.1/README.md#markdownlint-cli2jsonc", | ||
"type": "boolean", | ||
@@ -148,0 +148,0 @@ "default": false |
Sorry, the diff of this file is not supported yet
137257
0.1%3219
0.03%