@kitschpatrol/remark-config 4.5.0 → 4.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/readme.md +2 -2
package/package.json
CHANGED
package/readme.md
CHANGED
|
@@ -43,13 +43,13 @@ To use just this Remark config in isolation:
|
|
|
43
43
|
|
|
44
44
|
The Remark binary should be picked up automatically by VS Code plugins.
|
|
45
45
|
|
|
46
|
-
You can call it directly, but it's recommended to use the script bundled with the shared config to invoke the remark lint rules through `eslint
|
|
46
|
+
You can call it directly, but it's recommended to use the script bundled with the shared config to invoke the remark lint rules through ESLint. The [`eslint-mdx`](https://github.com/mdx-js/eslint-mdx) plugin is used to bridge these rules into ESLint and the VS Code ESLint plugin.
|
|
47
47
|
|
|
48
48
|
Integrate with your `package.json` scripts as you see fit, for example:
|
|
49
49
|
|
|
50
50
|
```json
|
|
51
51
|
"scripts": {
|
|
52
|
-
"lint": "
|
|
52
|
+
"lint": "pnpm remark . --quiet --frail"
|
|
53
53
|
}
|
|
54
54
|
```
|
|
55
55
|
|