mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 20:32:10 +00:00
## [0.11.1] - 2024-11-09 ### Features -4dd9b60editor/vscode: Replace existing output channel and trace output channel with a single LogOutputChannel (#7196) (Nicholas Rayburn) -1fcd709linter: Add jsx support for only-used-in-recursion (#7120) (no-yan) -4d577cflinter: Add `import/first` rule (#7180) (Dmitry Zakharov) -9b8973flinter: Add `import/unambiguous` rule (#7187) (Dmitry Zakharov) -5ab1ff6linter: Implement @typescript-eslint/no-unsafe-function-type (#6989) (Orenbek) ### Bug Fixes -eea8879editor/vscode: Update language client id to fix the resolution of the oxc.trace.server setting (#7181) (Nicholas Rayburn) -b73cfd9linter: Fix `is_method_call` with parentheses and chain expression (#7095) (tbashiyy) ### Refactor -8c0a362linter: Use `ctx.source_range(comment.content_span())` API (#7155) (Boshen) -c5485aesemantic: Add `ancestor_kinds` iterator function (#7217) (camchenry) -abf1602semantic: Rename `iter_parents` to `ancestors` (#7216) (camchenry) -42171ebsemantic: Rename `ancestors` to `ancestor_ids` (#7215) (camchenry) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
31 lines
722 B
JSON
31 lines
722 B
JSON
{
|
|
"name": "oxlint",
|
|
"version": "0.11.1",
|
|
"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": {
|
|
"oxlint": "bin/oxlint",
|
|
"oxc_language_server": "bin/oxc_language_server"
|
|
},
|
|
"funding": {
|
|
"url": "https://github.com/sponsors/Boshen"
|
|
},
|
|
"engines": {
|
|
"node": ">=14.*"
|
|
},
|
|
"files": [
|
|
"bin/oxlint",
|
|
"bin/oxc_language_server",
|
|
"configuration_schema.json",
|
|
"README.md"
|
|
]
|
|
}
|