eslint-plugin-markdown-preferences 0.12.0 → 0.14.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eslint-plugin-markdown-preferences",
3
- "version": "0.12.0",
3
+ "version": "0.14.0",
4
4
  "description": "ESLint plugin that enforces our markdown preferences",
5
5
  "type": "module",
6
6
  "exports": {
@@ -22,10 +22,12 @@
22
22
  "lint": "eslint .",
23
23
  "tsc": "tsc --project tsconfig.build.json",
24
24
  "eslint-fix": "eslint . --fix",
25
+ "markdownlint": "npx -y markdownlint-cli2 .",
25
26
  "test": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --timeout=60000",
26
27
  "cover": "c8 --reporter=lcov npm run test",
27
28
  "test:update": "npm run mocha -- \"tests/src/**/*.ts\" --reporter=dot --update",
28
29
  "update": "npm run ts -- ./tools/update.ts && npm run eslint-fix",
30
+ "update:resources": "npm run ts -- ./tools/update-resources.ts && npm run eslint-fix",
29
31
  "new": "npm run ts -- ./tools/new-rule.ts",
30
32
  "docs:watch": "vitepress dev docs --open",
31
33
  "docs:build": "vitepress build docs",
@@ -58,6 +60,10 @@
58
60
  "@eslint/markdown": "^7.1.0",
59
61
  "eslint": ">=9.0.0"
60
62
  },
63
+ "dependencies": {
64
+ "emoji-regex-xs": "^2.0.1",
65
+ "string-width": "^7.2.0"
66
+ },
61
67
  "devDependencies": {
62
68
  "@changesets/changelog-github": "^0.5.1",
63
69
  "@changesets/cli": "^2.28.1",