mirror of
https://github.com/danbulant/oxc
synced 2026-05-25 04:42:10 +00:00
## [0.9.1] - 2024-08-29 ### Features -6633972linter: Add fixer for `no-empty` (#5276) (camc314) -a58e448linter/eslint: Add fixer to `no-var` (#5144) (camc314) -a6e9769linter/jsx-a11y: Add `label-has-associated-control` (#5163) (Billy Levin) -c8e8532linter/unicorn: Add fixer to `throw-new-error` (#5275) (camc314) -7ccde4blinter/unicorn: Add fixer to `prefer-date-now` (#5147) (camc314) ### Bug Fixes -76e86f8linter: Eslint-plugin-unicorn prefer-spread wrong linter suggestion on variables of type string (#5265) (Arian94) -b39544elinter/jest: Fixer for `prefer-jest-mocked` creates invalid LHS expressions (#5243) (camc314) -9953fa5linter/no-null: Incorrect fixer for `NullLiteral` within `ReturnStatement` (#5247) (Dunqing) -318479elinter/no-unused-vars: Mark the class/function in the new expression as used (#5306) (magic-akari) ### Refactor -fa1d460linter: Clean up Fixer and Message (#5308) (DonIsaac) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
48 lines
1.3 KiB
TOML
48 lines
1.3 KiB
TOML
[package]
|
|
name = "oxlint"
|
|
version = "0.9.1"
|
|
publish = false
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.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 }
|
|
|
|
glob = { workspace = true }
|
|
ignore = { workspace = true, features = ["simd-accel"] }
|
|
miette = { workspace = true }
|
|
tempfile = { workspace = true }
|
|
rayon = { workspace = true }
|
|
bpaf = { workspace = true, features = ["autocomplete", "bright-color", "derive"] }
|
|
tracing-subscriber = { workspace = true, features = [] } # Omit the `regex` feature
|
|
|
|
[features]
|
|
default = []
|
|
allocator = ["dep:jemallocator", "dep:mimalloc"]
|