@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.
Files changed (2) hide show
  1. package/dist/preset.mjs +6 -3
  2. 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((k) => [
13037
- k,
13038
- true
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.49.0",
3
+ "version": "0.50.1",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {