@agilebot/eslint-plugin 0.9.1 → 0.9.2

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.
@@ -12,13 +12,7 @@ var __require = /* @__PURE__ */ createRequire(import.meta.url);
12
12
  //#endregion
13
13
  //#region src/util/rule.js
14
14
  const docBaseUrl = "https://github.com/sh-agilebot/frontend-toolkit/blob/master/packages/eslint-plugin/src/rules/";
15
- const hasDocs = [
16
- "enforce-mui-icon-alias",
17
- "intl-id-missing",
18
- "intl-id-prefix",
19
- "intl-no-default",
20
- "react-better-exhaustive-deps"
21
- ];
15
+ const hasDocs = [];
22
16
  const createRule = ESLintUtils.RuleCreator((name) => hasDocs.includes(name) ? `${docBaseUrl}${name}.md` : `${docBaseUrl}${name}.test.js`);
23
17
 
24
18
  //#endregion
package/package.json CHANGED
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "@agilebot/eslint-plugin",
3
- "version": "0.9.1",
3
+ "version": "0.9.2",
4
4
  "type": "module",
5
5
  "description": "Agilebot's ESLint plugin",
6
- "main": "./dist/index.js",
7
- "types": "./dist/index.d.ts",
6
+ "main": "./dist/index.mjs",
7
+ "types": "./dist/index.d.mts",
8
8
  "exports": {
9
9
  ".": {
10
- "types": "./dist/index.d.ts",
11
- "import": "./dist/index.js"
10
+ "types": "./dist/index.d.mts",
11
+ "import": "./dist/index.mjs"
12
12
  }
13
13
  },
14
14
  "license": "MIT",
@@ -27,7 +27,7 @@
27
27
  "dependencies": {
28
28
  "@typescript-eslint/utils": "~8.29.0",
29
29
  "eslint-plugin-react": "^7.37.2",
30
- "@agilebot/eslint-utils": "0.9.1"
30
+ "@agilebot/eslint-utils": "0.9.2"
31
31
  },
32
32
  "peerDependencies": {
33
33
  "eslint": "^9.0.0"
File without changes