energy-state-analyzer 0.13.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/CHANGELOG.md +13 -1
- package/README.md +1 -1
- package/dist/cli.js +1 -1
- package/docs/cli.md +15 -5
- package/docs/configuration.md +6 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
---
|
|
2
|
-
last_commit_released:
|
|
2
|
+
last_commit_released: eec025fc61c7d60083567d605817aa38ba64d314
|
|
3
3
|
name: energy-state-analyzer
|
|
4
4
|
updaters:
|
|
5
5
|
- command: npm version {version} --no-git-tag-version --allow-same-version
|
|
@@ -11,6 +11,18 @@ All notable changes to the "energy-state-analyzer" extension are generated by
|
|
|
11
11
|
[EasyBuild.ShipIt](https://github.com/easybuild-org/EasyBuild.ShipIt) from
|
|
12
12
|
[Conventional Commits](https://www.conventionalcommits.org/).
|
|
13
13
|
|
|
14
|
+
## 0.14.0 - 2026-09-06
|
|
15
|
+
|
|
16
|
+
### 🚀 Features
|
|
17
|
+
|
|
18
|
+
* *(cli)* Default reports to SARIF (#98) ([eec025f](https://github.com/cardamomcode/energy-state-analyzer/commit/eec025fc61c7d60083567d605817aa38ba64d314))
|
|
19
|
+
|
|
20
|
+
### 🐞 Bug Fixes
|
|
21
|
+
|
|
22
|
+
* Skip generated directories during scans (#96) ([f8b14e9](https://github.com/cardamomcode/energy-state-analyzer/commit/f8b14e91932a676526bd00cc924bf46830bd8def))
|
|
23
|
+
|
|
24
|
+
<strong><small>[View changes on Github](https://github.com/cardamomcode/energy-state-analyzer/compare/9d5839162703674ed718d973853e3398d3e13da4..eec025fc61c7d60083567d605817aa38ba64d314)</small></strong>
|
|
25
|
+
|
|
14
26
|
## 0.13.0 - 2026-09-04
|
|
15
27
|
|
|
16
28
|
### 🚀 Features
|
package/README.md
CHANGED
|
@@ -89,7 +89,7 @@ Every detector has an `enabled` toggle, plus the magic-number/string switches an
|
|
|
89
89
|
|
|
90
90
|
### Thresholds and allowlists (`.esaconfig.json`)
|
|
91
91
|
|
|
92
|
-
Set thresholds, ratios, and magic-number/string allowlists in an `.esaconfig.json` file to share them between the editor and CLI/CI — see [docs/configuration.md](docs/configuration.md) for the schema, per-key defaults, and how the file layers over VS Code settings (`defaults < .esaconfig.json < host override`). The keys (all optional; an absent key keeps its default) include:
|
|
92
|
+
Set thresholds, ratios, and magic-number/string allowlists in an `.esaconfig.json` file to share them between the editor and CLI/CI — see [docs/configuration.md](docs/configuration.md) for the schema, per-key defaults, [guidance on choosing thresholds](docs/configuration.md#choosing-thresholds), and how the file layers over VS Code settings (`defaults < .esaconfig.json < host override`). The keys (all optional; an absent key keeps its default) include:
|
|
93
93
|
|
|
94
94
|
- `nesting.mediumThreshold` / `highThreshold` (`3` / `5`)
|
|
95
95
|
- `cognitiveComplexity.mediumThreshold` / `highThreshold` (`15` / `25`)
|