mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.9.0] - 2024-08-26 -5946748linter: [**BREAKING**] Parse and display syntax errors for regular expressions (#5214) (Boshen) -b894d3blinter: [**BREAKING**] Make `no-unused-vars` correctness (#5081) (DonIsaac) ### Features -1ce9630linter/config: Implement FromIterator for LintPluginOptions (#5102) (DonIsaac) -34bfaf6linter/react: Add fixer to `jsx-props-no-spread-multi` (#5145) (camc314) -982bd6elinter/unicorn: Add fixer to `require-array-join-separator` (#5152) (camc314) -a6704bdlinter/unicorn: Add fixer to `prefer-set-size` (#5149) (camc314) -ac7edcclinter/unicorn: Add fixer to `prefer-array-some` (#5153) (camc314) -1d01aa3linter/unicorn: Add partial fixer for `prefer-array-flat` (#5143) (camc314) -22d57f9linter/unicorn: Add fixer to `prefer-string-slice` (#5150) (Cameron) -2fe4415linter/unicorn: Add fixer to `no-redundant-roles` (#5146) (Cameron) -d35c6f5linter/unicorn: Add fixer to `prefer-regexp-test` (#5151) (Cameron) -27db769linter/unicorn: Add fixer to `text-encoding-identifier-case` (#5154) (Cameron) -f7958c4linter/unicorn: Add prefer-structured-clone (#5095) (Jelle van der Waa) -004ffa0linter/vitest: Implement `prefer-each` (#5203) (dalaoshu) ### Bug Fixes -aaaf26clinter: Error in fixer for prefer-to-have-length (#5197) (dalaoshu) -1f5b6b6linter: Bug in fixer for prefer-to-have-length (#5164) (dalaoshu) -7eb052elinter: `no-hex-escape` fixer removing regex flags (#5137) (Cameron) -76c66b4linter/max-lines: Point span to end of file for disable directive to work (#5117) (Boshen) -8ff6f2clinter/no-unused-vars: Panic on UsingDeclarations (#5206) (DonIsaac) -d29042elinter/no-unused-vars: Function expression in implicit arrow function return (#5155) (DonIsaac) -36e4a28linter/no-unused-vars: Panic in variable declarator usage checks (#5160) (DonIsaac) -ba62a71linter/react: Fixed false positive with missing key inside React.Children.toArray() for fragments (#5133) (Earl Chase) -fd1031alinter/unicorn: Breaking fixer in case statements for `no-null` (#5176) (DonIsaac) -7b86ed6linter/unicorn: Handle type casts and parens in `no-null` (#5175) (Don Isaac) -b629e16linter/unicorn: Improve diagnostic message for `no-null` (#5172) (DonIsaac) ### Performance -ce454cfUse simdutf8 to validate UTF-8 when reading files (#5196) (dalaoshu) ### Refactor -543cad6codegen: Remove some pub APIs (Boshen) -0d3661alinter: Remove meaningless `span0` (#5209) (dalaoshu) -2a91ef1linter: `eslint/no_redeclare` rule use `run_on_symbol` not `run_once` (#5201) (overlookmotel) -33599b0linter: Split options into multiple files (#5101) (DonIsaac) -7ab6152linter/unicorn: Clean up `no-null` (#5174) (DonIsaac) ### Testing -a877e5alinter/no-unused-vars: Ensure type annotations on property accessors are considered used (#5183) (DonIsaac) -7886618linter/unicorn: Add fixer tests for `no-null` (#5173) (DonIsaac) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
158 lines
No EOL
4.2 KiB
JSON
158 lines
No EOL
4.2 KiB
JSON
{
|
|
"name": "oxc-vscode",
|
|
"description": "oxc vscode extension",
|
|
"packageManager": "pnpm@9.8.0",
|
|
"license": "MIT",
|
|
"version": "0.9.0",
|
|
"icon": "icon.png",
|
|
"publisher": "oxc",
|
|
"displayName": "Oxc",
|
|
"bugs": {
|
|
"url": "https://github.com/oxc-project/oxc/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/oxc-project/oxc.git",
|
|
"directory": "editors/vscode"
|
|
},
|
|
"categories": [
|
|
"Linters"
|
|
],
|
|
"keywords": [
|
|
"linter",
|
|
"oxc"
|
|
],
|
|
"engines": {
|
|
"vscode": "^1.90.0"
|
|
},
|
|
"sponsor": {
|
|
"url": "https://github.com/sponsors/boshen"
|
|
},
|
|
"activationEvents": [
|
|
"onLanguage:javascript",
|
|
"onLanguage:javascriptreact",
|
|
"onLanguage:typescript",
|
|
"onLanguage:typescriptreact",
|
|
"onLanguage:vue",
|
|
"onLanguage:svelte"
|
|
],
|
|
"main": "./out/main.js",
|
|
"contributes": {
|
|
"commands": [
|
|
{
|
|
"command": "oxc.restartServer",
|
|
"title": "Restart Oxc Server",
|
|
"category": "Oxc"
|
|
},
|
|
{
|
|
"command": "oxc.toggleEnable",
|
|
"title": "toggle enable",
|
|
"category": "Oxc"
|
|
},
|
|
{
|
|
"command": "oxc.showOutputChannel",
|
|
"title": "Show Output Channel",
|
|
"category": "Oxc"
|
|
},
|
|
{
|
|
"command": "oxc.showTraceOutputChannel",
|
|
"title": "Show Trace Output Channel",
|
|
"category": "Oxc"
|
|
}
|
|
],
|
|
"configuration": {
|
|
"type": "object",
|
|
"title": "oxc",
|
|
"properties": {
|
|
"oxc_language_server.run": {
|
|
"scope": "resource",
|
|
"type": "string",
|
|
"enum": [
|
|
"onSave",
|
|
"onType"
|
|
],
|
|
"default": "onType",
|
|
"description": "Run the linter on save (onSave) or on type (onType)"
|
|
},
|
|
"oxc_language_server.enable": {
|
|
"type": "boolean",
|
|
"default": true,
|
|
"description": "enable oxc language server"
|
|
},
|
|
"oxc_language_server.trace.server": {
|
|
"type": "string",
|
|
"scope": "window",
|
|
"enum": [
|
|
"off",
|
|
"messages",
|
|
"verbose"
|
|
],
|
|
"enumDescriptions": [
|
|
"No traces",
|
|
"Error only",
|
|
"Full log"
|
|
],
|
|
"default": "off",
|
|
"description": "Traces the communication between VS Code and the language server."
|
|
},
|
|
"oxc_language_server.configPath": {
|
|
"type": "string",
|
|
"scope": "window",
|
|
"default": ".eslintrc",
|
|
"description": "Path to ESlint configuration."
|
|
}
|
|
}
|
|
},
|
|
"jsonValidation": [
|
|
{
|
|
"fileMatch": [
|
|
"oxlintrc.json",
|
|
"oxlint.json",
|
|
".oxlintrc.json",
|
|
".oxlint.json",
|
|
".oxlintrc"
|
|
],
|
|
"url": "https://raw.githubusercontent.com/oxc-project/oxc/main/npm/oxlint/configuration_schema.json"
|
|
}
|
|
],
|
|
"languages": [
|
|
{
|
|
"id": "jsonc",
|
|
"filenames": [
|
|
"oxlintrc.json",
|
|
"oxlint.json",
|
|
".oxlintrc.json",
|
|
".oxlint.json",
|
|
".oxlintrc"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"scripts": {
|
|
"preinstall": "[ -f icon.png ] || curl https://cdn.jsdelivr.net/gh/oxc-project/oxc-assets/square.png --output icon.png",
|
|
"build": "pnpm run server:build:release && pnpm run compile && pnpm run package",
|
|
"compile": "esbuild client/extension.ts --bundle --outfile=out/main.js --external:vscode --format=cjs --platform=node --target=node16 --minify --sourcemap",
|
|
"watch": "pnpm run compile --watch",
|
|
"package": "vsce package --no-dependencies -o oxc_language_server.vsix",
|
|
"install-extension": "code --install-extension oxc_language_server.vsix --force",
|
|
"server:build:debug": "cargo build -p oxc_language_server",
|
|
"server:build:release": "cross-env CARGO_TARGET_DIR=./target cargo build -p oxc_language_server --release",
|
|
"fmt:js": "prettier --write ./**/*.{js,ts,json}"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^22.0.0",
|
|
"@types/vscode": "1.80.0",
|
|
"@vscode/vsce": "^3.0.0",
|
|
"cross-env": "^7.0.3",
|
|
"esbuild": "^0.23.0",
|
|
"ovsx": "^0.9.1",
|
|
"prettier": "^3.3.1",
|
|
"typescript": "^5.4.5"
|
|
},
|
|
"dependencies": {
|
|
"vscode-languageclient": "^9.0.1"
|
|
},
|
|
"vsce": {
|
|
"dependencies": false
|
|
}
|
|
} |