@aiready/consistency 0.4.1 → 0.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/dist/cli.mjs CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  analyzeConsistency
4
- } from "./chunk-CZUJTDNH.mjs";
4
+ } from "./chunk-IVRBV7SE.mjs";
5
5
 
6
6
  // src/cli.ts
7
7
  import { Command } from "commander";
package/dist/index.d.mts CHANGED
@@ -57,6 +57,11 @@ interface ConsistencyReport {
57
57
  */
58
58
  declare function analyzeConsistency(options: ConsistencyOptions): Promise<ConsistencyReport>;
59
59
 
60
+ /**
61
+ * AST-based naming analyzer
62
+ */
63
+ declare function analyzeNamingAST(files: string[]): Promise<NamingIssue[]>;
64
+
60
65
  /**
61
66
  * Analyzes naming conventions and quality
62
67
  */
@@ -74,4 +79,4 @@ declare function detectNamingConventions(files: string[], allIssues: NamingIssue
74
79
  */
75
80
  declare function analyzePatterns(files: string[]): Promise<PatternIssue[]>;
76
81
 
77
- export { type ArchitectureIssue, type ConsistencyIssue, type ConsistencyOptions, type ConsistencyReport, type NamingIssue, type PatternIssue, analyzeConsistency, analyzeNaming, analyzePatterns, detectNamingConventions };
82
+ export { type ArchitectureIssue, type ConsistencyIssue, type ConsistencyOptions, type ConsistencyReport, type NamingIssue, type PatternIssue, analyzeConsistency, analyzeNaming, analyzeNamingAST, analyzePatterns, detectNamingConventions };
package/dist/index.d.ts CHANGED
@@ -57,6 +57,11 @@ interface ConsistencyReport {
57
57
  */
58
58
  declare function analyzeConsistency(options: ConsistencyOptions): Promise<ConsistencyReport>;
59
59
 
60
+ /**
61
+ * AST-based naming analyzer
62
+ */
63
+ declare function analyzeNamingAST(files: string[]): Promise<NamingIssue[]>;
64
+
60
65
  /**
61
66
  * Analyzes naming conventions and quality
62
67
  */
@@ -74,4 +79,4 @@ declare function detectNamingConventions(files: string[], allIssues: NamingIssue
74
79
  */
75
80
  declare function analyzePatterns(files: string[]): Promise<PatternIssue[]>;
76
81
 
77
- export { type ArchitectureIssue, type ConsistencyIssue, type ConsistencyOptions, type ConsistencyReport, type NamingIssue, type PatternIssue, analyzeConsistency, analyzeNaming, analyzePatterns, detectNamingConventions };
82
+ export { type ArchitectureIssue, type ConsistencyIssue, type ConsistencyOptions, type ConsistencyReport, type NamingIssue, type PatternIssue, analyzeConsistency, analyzeNaming, analyzeNamingAST, analyzePatterns, detectNamingConventions };