oxlint 0.15.9 → 0.15.11

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.
@@ -351,6 +351,17 @@
351
351
  "files"
352
352
  ],
353
353
  "properties": {
354
+ "env": {
355
+ "description": "Environments enable and disable collections of global variables.",
356
+ "anyOf": [
357
+ {
358
+ "$ref": "#/definitions/OxlintEnv"
359
+ },
360
+ {
361
+ "type": "null"
362
+ }
363
+ ]
364
+ },
354
365
  "files": {
355
366
  "description": "A list of glob patterns to override.\n\n## Example `[ \"*.test.ts\", \"*.spec.ts\" ]`",
356
367
  "allOf": [
@@ -359,6 +370,17 @@
359
370
  }
360
371
  ]
361
372
  },
373
+ "globals": {
374
+ "description": "Enabled or disabled specific global variables.",
375
+ "anyOf": [
376
+ {
377
+ "$ref": "#/definitions/OxlintGlobals"
378
+ },
379
+ {
380
+ "type": "null"
381
+ }
382
+ ]
383
+ },
362
384
  "plugins": {
363
385
  "description": "Optionally change what plugins are enabled for this override. When omitted, the base config's plugins are used.",
364
386
  "default": null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oxlint",
3
- "version": "0.15.9",
3
+ "version": "0.15.11",
4
4
  "description": "Linter for the JavaScript Oxidation Compiler",
5
5
  "keywords": [],
6
6
  "author": "Boshen and oxc contributors",
@@ -29,13 +29,13 @@
29
29
  "README.md"
30
30
  ],
31
31
  "optionalDependencies": {
32
- "@oxlint/win32-x64": "0.15.9",
33
- "@oxlint/win32-arm64": "0.15.9",
34
- "@oxlint/linux-x64-gnu": "0.15.9",
35
- "@oxlint/linux-arm64-gnu": "0.15.9",
36
- "@oxlint/linux-x64-musl": "0.15.9",
37
- "@oxlint/linux-arm64-musl": "0.15.9",
38
- "@oxlint/darwin-x64": "0.15.9",
39
- "@oxlint/darwin-arm64": "0.15.9"
32
+ "@oxlint/win32-x64": "0.15.11",
33
+ "@oxlint/win32-arm64": "0.15.11",
34
+ "@oxlint/linux-x64-gnu": "0.15.11",
35
+ "@oxlint/linux-arm64-gnu": "0.15.11",
36
+ "@oxlint/linux-x64-musl": "0.15.11",
37
+ "@oxlint/linux-arm64-musl": "0.15.11",
38
+ "@oxlint/darwin-x64": "0.15.11",
39
+ "@oxlint/darwin-arm64": "0.15.11"
40
40
  }
41
41
  }