Comparing version 0.7.2 to 0.8.0
@@ -8,9 +8,19 @@ { | ||
"env": { | ||
"$ref": "#/definitions/OxlintEnv" | ||
"description": "Environments enable and disable collections of global variables.", | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/OxlintEnv" | ||
} | ||
] | ||
}, | ||
"globals": { | ||
"$ref": "#/definitions/OxlintGlobals" | ||
"description": "Enabled or disabled specific global variables.", | ||
"allOf": [ | ||
{ | ||
"$ref": "#/definitions/OxlintGlobals" | ||
} | ||
] | ||
}, | ||
"rules": { | ||
"description": "See [Oxlint Rules](./rules)", | ||
"description": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html).", | ||
"allOf": [ | ||
@@ -101,3 +111,3 @@ { | ||
"DummyRuleMap": { | ||
"description": "See [Oxlint Rules](./rules)", | ||
"description": "See [Oxlint Rules](https://oxc.rs/docs/guide/usage/linter/rules.html)", | ||
"type": "object", | ||
@@ -202,3 +212,3 @@ "additionalProperties": { | ||
"OxlintEnv": { | ||
"description": "Predefine global variables.", | ||
"description": "Predefine global variables.\n\nEnvironments specify what global variables are predefined. See [ESLint's list of environments](https://eslint.org/docs/v8.x/use/configure/language-options#specifying-environments) for what environments are available and what each one provides.", | ||
"type": "object", | ||
@@ -210,3 +220,3 @@ "additionalProperties": { | ||
"OxlintGlobals": { | ||
"description": "Add or remove global variables.", | ||
"description": "Add or remove global variables.\n\nFor each global variable, set the corresponding value equal to `\"writable\"` to allow the variable to be overwritten or `\"readonly\"` to disallow overwriting.\n\nGlobals can be disabled by setting their value to `\"off\"`. For example, in an environment where most Es2015 globals are available but `Promise` is unavailable, you might use this config:\n\n```json\n\n{ \"env\": { \"es6\": true }, \"globals\": { \"Promise\": \"off\" } }\n\n```\n\nYou may also use `\"readable\"` or `false` to represent `\"readonly\"`, and `\"writeable\"` or `true` to represent `\"writable\"`.", | ||
"type": "object", | ||
@@ -213,0 +223,0 @@ "additionalProperties": { |
@@ -1,1 +0,1 @@ | ||
{"name":"oxlint","version":"0.7.2","description":"Linter for the JavaScript Oxidation Compiler","keywords":[],"author":"Boshen and oxc contributors","license":"MIT","homepage":"https://oxc.rs","bugs":"https://github.com/oxc-project/oxc/issues","repository":{"type":"git","url":"https://github.com/oxc-project/oxc","directory":"npm/oxlint"},"bin":"bin/oxlint","funding":{"url":"https://github.com/sponsors/Boshen"},"engines":{"node":">=14.*"},"files":["bin/oxlint","bin/oxc_language_server","configuration_schema.json","README.md"],"optionalDependencies":{"@oxlint/win32-x64":"0.7.2","@oxlint/win32-arm64":"0.7.2","@oxlint/linux-x64-gnu":"0.7.2","@oxlint/linux-arm64-gnu":"0.7.2","@oxlint/linux-x64-musl":"0.7.2","@oxlint/linux-arm64-musl":"0.7.2","@oxlint/darwin-x64":"0.7.2","@oxlint/darwin-arm64":"0.7.2"}} | ||
{"name":"oxlint","version":"0.8.0","description":"Linter for the JavaScript Oxidation Compiler","keywords":[],"author":"Boshen and oxc contributors","license":"MIT","homepage":"https://oxc.rs","bugs":"https://github.com/oxc-project/oxc/issues","repository":{"type":"git","url":"https://github.com/oxc-project/oxc","directory":"npm/oxlint"},"bin":"bin/oxlint","funding":{"url":"https://github.com/sponsors/Boshen"},"engines":{"node":">=14.*"},"files":["bin/oxlint","bin/oxc_language_server","configuration_schema.json","README.md"],"optionalDependencies":{"@oxlint/win32-x64":"0.8.0","@oxlint/win32-arm64":"0.8.0","@oxlint/linux-x64-gnu":"0.8.0","@oxlint/linux-arm64-gnu":"0.8.0","@oxlint/linux-x64-musl":"0.8.0","@oxlint/linux-arm64-musl":"0.8.0","@oxlint/darwin-x64":"0.8.0","@oxlint/darwin-arm64":"0.8.0"}} |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
18520
301