mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
## [0.10.2] - 2024-10-22 ### Features -dbe1972linter: Import/no-cycle should turn on ignore_types by default (#6761) (Boshen) -619d06flinter: Fix suggestion for `eslint:no_empty_static_block` rule (#6732) (Tapan Prakash) ### Bug Fixes ### Performance -8387baclinter: Apply small file optimization, up to 30% faster (#6600) (camchenry) ### Refactor -b884577linter: All ast_util functions take Semantic (#6753) (DonIsaac) -744aa74linter: Impl `Deref<Target = Semantic>` for `LintContext` (#6752) (DonIsaac) -6ffdcc0oxlint: Lint/mod.rs -> lint.rs (#6746) (Boshen) ### Testing -b03cec6oxlint: Add `--fix` test case (#6747) (Boshen) --------- Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
48 lines
1.2 KiB
TOML
48 lines
1.2 KiB
TOML
[package]
|
|
name = "oxlint"
|
|
version = "0.10.2"
|
|
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"]
|