@storm-software/linting-tools 1.25.2 → 1.26.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 +14 -0
- package/biome/biome.json +5 -0
- package/cli/index.js +4940 -4610
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [1.25.3](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.25.2...linting-tools-v1.25.3) (2024-01-15)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **workspace-tools:** Many code quality improvements and enhanced linting rules ([d2123cf](https://github.com/storm-software/storm-ops/commit/d2123cf87850b1442b8e7c1ed4b3ccc07f2a8673))
|
|
7
|
+
|
|
8
|
+
## [1.25.2](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.25.1...linting-tools-v1.25.2) (2024-01-15)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **git-tools:** Added dependency override for `request` package to prevent request forgery exposure ([1f42b96](https://github.com/storm-software/storm-ops/commit/1f42b96518e944a3b1e5a3e38dfc1c7dc1a7241f))
|
|
14
|
+
|
|
1
15
|
## [1.25.1](https://github.com/storm-software/storm-ops/compare/linting-tools-v1.25.0...linting-tools-v1.25.1) (2024-01-15)
|
|
2
16
|
|
|
3
17
|
|
package/biome/biome.json
CHANGED
|
@@ -35,11 +35,16 @@
|
|
|
35
35
|
"noUselessElse": "warn"
|
|
36
36
|
},
|
|
37
37
|
"suspicious": {
|
|
38
|
+
"noAssignInExpressions": "warn",
|
|
38
39
|
"noEmptyInterface": "off",
|
|
39
40
|
"noExplicitAny": "off"
|
|
40
41
|
},
|
|
41
42
|
"security": {
|
|
42
43
|
"noDangerouslySetInnerHtml": "off"
|
|
44
|
+
},
|
|
45
|
+
"nursery": {
|
|
46
|
+
"useImportType": "error",
|
|
47
|
+
"useExportType": "error"
|
|
43
48
|
}
|
|
44
49
|
}
|
|
45
50
|
},
|