mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +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>
61 lines
2.1 KiB
TOML
61 lines
2.1 KiB
TOML
[package]
|
|
name = "oxc_linter"
|
|
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
|
|
include = ["/examples", "/src"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_span = { workspace = true, features = ["schemars", "serialize"] }
|
|
oxc_ast = { workspace = true }
|
|
oxc_cfg = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_index = { workspace = true }
|
|
oxc_macros = { workspace = true }
|
|
oxc_semantic = { workspace = true }
|
|
oxc_syntax = { workspace = true }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_resolver = { workspace = true }
|
|
|
|
rayon = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
regex = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
phf = { workspace = true, features = ["macros"] }
|
|
itertools = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
language-tags = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
url = { workspace = true }
|
|
rust-lapper = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
memchr = { workspace = true }
|
|
json-strip-comments = { workspace = true }
|
|
schemars = { workspace = true, features = ["indexmap2"] }
|
|
globset = { workspace = true }
|
|
simdutf8 = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
project-root = { workspace = true }
|
|
markdown = { version = "1.0.0-alpha.19" }
|