mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42: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>
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "oxlint"
|
|
version = "0.11.1"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[[bin]]
|
|
name = "oxlint"
|
|
path = "src/main.rs"
|
|
test = false
|
|
doctest = false
|
|
|
|
[target.'cfg(all(not(target_env = "msvc"), not(target_os = "windows")))'.dependencies]
|
|
jemallocator = { workspace = true, optional = true }
|
|
|
|
[target.'cfg(target_os = "windows")'.dependencies]
|
|
mimalloc = { workspace = true, optional = true }
|
|
|
|
[dependencies]
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_linter = { workspace = true }
|
|
oxc_span = { workspace = true }
|
|
|
|
bpaf = { workspace = true, features = ["autocomplete", "bright-color", "derive"] }
|
|
glob = { workspace = true }
|
|
ignore = { workspace = true, features = ["simd-accel"] }
|
|
miette = { workspace = true }
|
|
rayon = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
tracing-subscriber = { workspace = true, features = [] } # Omit the `regex` feature
|
|
|
|
[features]
|
|
default = []
|
|
allocator = ["dep:jemallocator", "dep:mimalloc"]
|