@storm-software/linting-tools 1.87.6 → 1.88.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 +6 -0
- package/bin/lint.js +7 -2
- package/package.json +1 -1
- package/src/cli/index.js +7 -2
package/CHANGELOG.md
CHANGED
package/bin/lint.js
CHANGED
|
@@ -356757,14 +356757,19 @@ var StormConfigSchema = z2.object({
|
|
|
356757
356757
|
var COLOR_KEYS = [
|
|
356758
356758
|
"dark",
|
|
356759
356759
|
"light",
|
|
356760
|
+
"base",
|
|
356760
356761
|
"brand",
|
|
356762
|
+
"alternate",
|
|
356761
356763
|
"accent",
|
|
356762
|
-
"
|
|
356764
|
+
"link",
|
|
356763
356765
|
"success",
|
|
356766
|
+
"help",
|
|
356764
356767
|
"info",
|
|
356765
356768
|
"warning",
|
|
356766
356769
|
"error",
|
|
356767
|
-
"fatal"
|
|
356770
|
+
"fatal",
|
|
356771
|
+
"positive",
|
|
356772
|
+
"negative"
|
|
356768
356773
|
];
|
|
356769
356774
|
|
|
356770
356775
|
// packages/config-tools/src/utilities/get-default-config.ts
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/linting-tools",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.88.0",
|
|
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": {
|
package/src/cli/index.js
CHANGED
|
@@ -354947,14 +354947,19 @@ var StormConfigSchema = z2.object({
|
|
|
354947
354947
|
var COLOR_KEYS = [
|
|
354948
354948
|
"dark",
|
|
354949
354949
|
"light",
|
|
354950
|
+
"base",
|
|
354950
354951
|
"brand",
|
|
354952
|
+
"alternate",
|
|
354951
354953
|
"accent",
|
|
354952
|
-
"
|
|
354954
|
+
"link",
|
|
354953
354955
|
"success",
|
|
354956
|
+
"help",
|
|
354954
354957
|
"info",
|
|
354955
354958
|
"warning",
|
|
354956
354959
|
"error",
|
|
354957
|
-
"fatal"
|
|
354960
|
+
"fatal",
|
|
354961
|
+
"positive",
|
|
354962
|
+
"negative"
|
|
354958
354963
|
];
|
|
354959
354964
|
|
|
354960
354965
|
// packages/config-tools/src/utilities/get-default-config.ts
|