@storm-software/eslint 0.49.0 → 0.50.1
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/dist/preset.mjs +6 -3
- package/package.json +1 -1
package/dist/preset.mjs
CHANGED
|
@@ -13033,12 +13033,15 @@ function getStormConfig(options = {
|
|
|
13033
13033
|
globals: {
|
|
13034
13034
|
...Object.fromEntries(
|
|
13035
13035
|
Object.keys(globals).flatMap(
|
|
13036
|
-
(group) => Object.keys(globals[group]).map((
|
|
13037
|
-
|
|
13038
|
-
|
|
13036
|
+
(group) => Object.keys(globals[group]).map((key) => [
|
|
13037
|
+
key,
|
|
13038
|
+
"readonly"
|
|
13039
13039
|
])
|
|
13040
13040
|
)
|
|
13041
13041
|
),
|
|
13042
|
+
...globals.browser,
|
|
13043
|
+
...globals.node,
|
|
13044
|
+
"window": "readonly",
|
|
13042
13045
|
"Storm": "readonly"
|
|
13043
13046
|
},
|
|
13044
13047
|
ecmaVersion: "latest",
|
package/package.json
CHANGED