@aiready/core 0.7.0 → 0.7.1

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/dist/index.d.mts CHANGED
@@ -58,6 +58,11 @@ interface AIReadyConfig {
58
58
  domainPatterns?: string[];
59
59
  pathDomainMap?: Record<string, string>;
60
60
  };
61
+ 'consistency'?: {
62
+ acceptedAbbreviations?: string[];
63
+ shortWords?: string[];
64
+ disableChecks?: ('single-letter' | 'abbreviation' | 'convention-mix' | 'unclear' | 'poor-naming')[];
65
+ };
61
66
  };
62
67
  output?: {
63
68
  format?: 'console' | 'json' | 'html';
package/dist/index.d.ts CHANGED
@@ -58,6 +58,11 @@ interface AIReadyConfig {
58
58
  domainPatterns?: string[];
59
59
  pathDomainMap?: Record<string, string>;
60
60
  };
61
+ 'consistency'?: {
62
+ acceptedAbbreviations?: string[];
63
+ shortWords?: string[];
64
+ disableChecks?: ('single-letter' | 'abbreviation' | 'convention-mix' | 'unclear' | 'poor-naming')[];
65
+ };
61
66
  };
62
67
  output?: {
63
68
  format?: 'console' | 'json' | 'html';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aiready/core",
3
- "version": "0.7.0",
3
+ "version": "0.7.1",
4
4
  "description": "Shared utilities for AIReady analysis tools",
5
5
  "main": "./dist/index.js",
6
6
  "module": "./dist/index.mjs",
@@ -12,14 +12,6 @@
12
12
  "import": "./dist/index.mjs"
13
13
  }
14
14
  },
15
- "scripts": {
16
- "build": "tsup src/index.ts --format cjs,esm --dts",
17
- "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
18
- "lint": "eslint src",
19
- "clean": "rm -rf dist",
20
- "prepublishOnly": "pnpm build",
21
- "release": "pnpm build && pnpm publish --no-git-checks"
22
- },
23
15
  "keywords": [
24
16
  "aiready",
25
17
  "code-analysis",
@@ -51,5 +43,12 @@
51
43
  "chalk": "^5.4.1",
52
44
  "glob": "^13.0.0",
53
45
  "typescript": "^5.9.3"
46
+ },
47
+ "scripts": {
48
+ "build": "tsup src/index.ts --format cjs,esm --dts",
49
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
50
+ "lint": "eslint src",
51
+ "clean": "rm -rf dist",
52
+ "release": "pnpm build && pnpm publish --no-git-checks"
54
53
  }
55
- }
54
+ }