@storm-software/linting-tools 1.132.66 → 1.132.67
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/README.md +2 -1
- package/bin/lint.cjs +1 -3
- package/bin/lint.js +1 -3
- package/package.json +2 -2
- package/syncpack/config.js +10 -10
- package/taplo/config.toml +3 -3
- package/terrascan/config.toml +2 -2
package/README.md
CHANGED
|
@@ -27,7 +27,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
27
27
|
|
|
28
28
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
29
29
|
|
|
30
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
31
31
|
|
|
32
32
|
<!-- prettier-ignore-start -->
|
|
33
33
|
<!-- markdownlint-disable -->
|
|
@@ -46,6 +46,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
46
46
|
|
|
47
47
|
<!-- START doctoc -->
|
|
48
48
|
<!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
|
|
49
|
+
|
|
49
50
|
## Table of Contents
|
|
50
51
|
|
|
51
52
|
- [Storm Linting Tools](#storm-linting-tools)
|
package/bin/lint.cjs
CHANGED
|
@@ -283151,9 +283151,7 @@ function findFolderUp(startPath, endFileNames = [], endDirectoryNames = []) {
|
|
|
283151
283151
|
)) {
|
|
283152
283152
|
return _startPath;
|
|
283153
283153
|
}
|
|
283154
|
-
if (endFileNames.some(
|
|
283155
|
-
(endFileName) => _fs2.existsSync.call(void 0, _path2.join.call(void 0, _startPath, endFileName))
|
|
283156
|
-
)) {
|
|
283154
|
+
if (endFileNames.some((endFileName) => _fs2.existsSync.call(void 0, _path2.join.call(void 0, _startPath, endFileName)))) {
|
|
283157
283155
|
return _startPath;
|
|
283158
283156
|
}
|
|
283159
283157
|
if (_startPath !== "/" && depth++ < MAX_PATH_SEARCH_DEPTH) {
|
package/bin/lint.js
CHANGED
|
@@ -283750,9 +283750,7 @@ function findFolderUp(startPath, endFileNames = [], endDirectoryNames = []) {
|
|
|
283750
283750
|
)) {
|
|
283751
283751
|
return _startPath;
|
|
283752
283752
|
}
|
|
283753
|
-
if (endFileNames.some(
|
|
283754
|
-
(endFileName) => existsSync3(join2(_startPath, endFileName))
|
|
283755
|
-
)) {
|
|
283753
|
+
if (endFileNames.some((endFileName) => existsSync3(join2(_startPath, endFileName)))) {
|
|
283756
283754
|
return _startPath;
|
|
283757
283755
|
}
|
|
283758
283756
|
if (_startPath !== "/" && depth++ < MAX_PATH_SEARCH_DEPTH) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.67",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
|
|
6
6
|
"repository": {
|
|
@@ -149,5 +149,5 @@
|
|
|
149
149
|
"vfile-reporter": "8.1.1"
|
|
150
150
|
},
|
|
151
151
|
"publishConfig": { "access": "public" },
|
|
152
|
-
"gitHead": "
|
|
152
|
+
"gitHead": "58754a0336790191cb3c0ead5b28fef7db35fac3"
|
|
153
153
|
}
|
package/syncpack/config.js
CHANGED
|
@@ -3,16 +3,16 @@ export const config = {
|
|
|
3
3
|
customTypes: {
|
|
4
4
|
engines: {
|
|
5
5
|
strategy: "versionsByName",
|
|
6
|
-
path: "engines"
|
|
6
|
+
path: "engines"
|
|
7
7
|
},
|
|
8
8
|
packageManager: {
|
|
9
9
|
strategy: "name@version",
|
|
10
|
-
path: "packageManager"
|
|
10
|
+
path: "packageManager"
|
|
11
11
|
},
|
|
12
12
|
nodeEngine: {
|
|
13
13
|
strategy: "version",
|
|
14
|
-
path: "engines.node"
|
|
15
|
-
}
|
|
14
|
+
path: "engines.node"
|
|
15
|
+
}
|
|
16
16
|
},
|
|
17
17
|
dependencyTypes: ["**"],
|
|
18
18
|
formatBugs: true,
|
|
@@ -27,7 +27,7 @@ export const config = {
|
|
|
27
27
|
"keywords",
|
|
28
28
|
"peerDependencies",
|
|
29
29
|
"resolutions",
|
|
30
|
-
"scripts"
|
|
30
|
+
"scripts"
|
|
31
31
|
],
|
|
32
32
|
sortExports: [
|
|
33
33
|
"types",
|
|
@@ -38,7 +38,7 @@ export const config = {
|
|
|
38
38
|
"require",
|
|
39
39
|
"development",
|
|
40
40
|
"production",
|
|
41
|
-
"default"
|
|
41
|
+
"default"
|
|
42
42
|
],
|
|
43
43
|
sortFirst: ["name", "description", "version", "author"],
|
|
44
44
|
sortPackages: true,
|
|
@@ -48,14 +48,14 @@ export const config = {
|
|
|
48
48
|
label: "@types packages should only be under devDependencies",
|
|
49
49
|
dependencies: ["@types/**"],
|
|
50
50
|
dependencyTypes: ["!dev"],
|
|
51
|
-
isBanned: true
|
|
51
|
+
isBanned: true
|
|
52
52
|
},
|
|
53
53
|
{
|
|
54
54
|
label:
|
|
55
55
|
"Ensure semver ranges for locally developed packages satisfy the local version",
|
|
56
56
|
dependencies: ["$LOCAL"],
|
|
57
57
|
dependencyTypes: ["dev"],
|
|
58
|
-
pinVersion: ["workspace-protocol"]
|
|
59
|
-
}
|
|
60
|
-
]
|
|
58
|
+
pinVersion: ["workspace-protocol"]
|
|
59
|
+
}
|
|
60
|
+
]
|
|
61
61
|
};
|
package/taplo/config.toml
CHANGED
|
@@ -5,7 +5,7 @@ include = [
|
|
|
5
5
|
"**/Cargo.toml",
|
|
6
6
|
"**/.config/**/*.toml",
|
|
7
7
|
"crates/**/*.toml",
|
|
8
|
-
"apps/**/*.toml"
|
|
8
|
+
"apps/**/*.toml"
|
|
9
9
|
]
|
|
10
10
|
|
|
11
11
|
[formatting]
|
|
@@ -40,11 +40,11 @@ crlf = false
|
|
|
40
40
|
object_trailing_comma = false
|
|
41
41
|
|
|
42
42
|
[[rule]]
|
|
43
|
+
formatting = { reorder_keys = true }
|
|
43
44
|
keys = [
|
|
44
45
|
"dependencies",
|
|
45
46
|
"dev-dependencies",
|
|
46
47
|
"build-dependencies",
|
|
47
48
|
"workspace.dependencies",
|
|
48
|
-
"patch.crates-io"
|
|
49
|
+
"patch.crates-io"
|
|
49
50
|
]
|
|
50
|
-
formatting = { reorder_keys = true }
|
package/terrascan/config.toml
CHANGED
|
@@ -10,9 +10,9 @@ level = "medium"
|
|
|
10
10
|
skip-rules = ["accurics.kubernetes.IAM.107"]
|
|
11
11
|
|
|
12
12
|
[k8s-admission-control]
|
|
13
|
+
dashboard = true
|
|
13
14
|
denied-categories = ["Network Ports Security"]
|
|
14
|
-
denied-severity
|
|
15
|
-
dashboard = true
|
|
15
|
+
denied-severity = "high"
|
|
16
16
|
|
|
17
17
|
# [policy]
|
|
18
18
|
# environment = "<environment_url>"
|