@archlinter/cli 0.10.0 → 0.11.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.
Files changed (2) hide show
  1. package/README.md +4 -4
  2. package/package.json +7 -7
package/README.md CHANGED
@@ -175,7 +175,7 @@ entry_points:
175
175
 
176
176
  # Rule-specific configuration
177
177
  rules:
178
- cycles: error
178
+ cycles: high
179
179
 
180
180
  god_module:
181
181
  severity: high
@@ -184,7 +184,7 @@ rules:
184
184
  churn: 20
185
185
 
186
186
  layer_violation:
187
- severity: error
187
+ severity: high
188
188
  layers:
189
189
  - name: domain
190
190
  path: '**/domain/**'
@@ -205,7 +205,7 @@ overrides:
205
205
 
206
206
  # Scoring and grading settings
207
207
  scoring:
208
- minimum: warn
208
+ minimum: medium
209
209
  weights:
210
210
  critical: 100
211
211
  high: 50
@@ -213,7 +213,7 @@ scoring:
213
213
  low: 5
214
214
 
215
215
  # Framework preset
216
- framework: nestjs
216
+ extends: nestjs
217
217
  ```
218
218
 
219
219
  ## Available Detectors
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@archlinter/cli",
3
- "version": "0.10.0",
3
+ "version": "0.11.0",
4
4
  "description": "Fast architecture smell detector for TypeScript/JavaScript",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -21,12 +21,12 @@
21
21
  "README.md"
22
22
  ],
23
23
  "optionalDependencies": {
24
- "@archlinter/cli-darwin-arm64": "0.10.0",
25
- "@archlinter/cli-darwin-x64": "0.10.0",
26
- "@archlinter/cli-linux-x64": "0.10.0",
27
- "@archlinter/cli-linux-arm64": "0.10.0",
28
- "@archlinter/cli-linux-x64-musl": "0.10.0",
29
- "@archlinter/cli-win32-x64": "0.10.0"
24
+ "@archlinter/cli-darwin-arm64": "0.11.0",
25
+ "@archlinter/cli-darwin-x64": "0.11.0",
26
+ "@archlinter/cli-linux-x64": "0.11.0",
27
+ "@archlinter/cli-linux-arm64": "0.11.0",
28
+ "@archlinter/cli-linux-x64-musl": "0.11.0",
29
+ "@archlinter/cli-win32-x64": "0.11.0"
30
30
  },
31
31
  "engines": {
32
32
  "node": ">=18"