eslint-plugin-markdown-preferences 0.11.0 → 0.13.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/README.md +6 -1
- package/lib/index.d.ts +41 -1
- package/lib/index.js +2730 -160
- package/package.json +8 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-markdown-preferences",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.13.0",
|
|
4
4
|
"description": "ESLint plugin that enforces our markdown preferences",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"exports": {
|
|
@@ -26,6 +26,7 @@
|
|
|
26
26
|
"cover": "c8 --reporter=lcov npm run test",
|
|
27
27
|
"test:update": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --update",
|
|
28
28
|
"update": "npm run ts -- ./tools/update.ts && npm run eslint-fix",
|
|
29
|
+
"update:resources": "npm run ts -- ./tools/update-resources.ts && npm run eslint-fix",
|
|
29
30
|
"new": "npm run ts -- ./tools/new-rule.ts",
|
|
30
31
|
"docs:watch": "vitepress dev docs --open",
|
|
31
32
|
"docs:build": "vitepress build docs",
|
|
@@ -83,7 +84,7 @@
|
|
|
83
84
|
"eslint-config-prettier": "^10.1.1",
|
|
84
85
|
"eslint-plugin-eslint-comments": "^3.2.0",
|
|
85
86
|
"eslint-plugin-eslint-plugin": "^7.0.0",
|
|
86
|
-
"eslint-plugin-jsdoc": "^
|
|
87
|
+
"eslint-plugin-jsdoc": "^54.0.0",
|
|
87
88
|
"eslint-plugin-json-schema-validator": "^5.3.1",
|
|
88
89
|
"eslint-plugin-jsonc": "^2.19.1",
|
|
89
90
|
"eslint-plugin-markdown": "^5.1.0",
|
|
@@ -107,7 +108,7 @@
|
|
|
107
108
|
"stylelint-config-recommended-vue": "^1.6.0",
|
|
108
109
|
"stylelint-config-standard": "^39.0.0",
|
|
109
110
|
"stylelint-config-standard-vue": "^1.0.0",
|
|
110
|
-
"tsdown": "^0.
|
|
111
|
+
"tsdown": "^0.14.0",
|
|
111
112
|
"tsx": "^4.19.3",
|
|
112
113
|
"twoslash-eslint": "^0.3.1",
|
|
113
114
|
"type-fest": "^4.37.0",
|
|
@@ -120,5 +121,9 @@
|
|
|
120
121
|
},
|
|
121
122
|
"publishConfig": {
|
|
122
123
|
"access": "public"
|
|
124
|
+
},
|
|
125
|
+
"dependencies": {
|
|
126
|
+
"emoji-regex-xs": "^2.0.1",
|
|
127
|
+
"string-width": "^7.2.0"
|
|
123
128
|
}
|
|
124
129
|
}
|