mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.10.1] - 2024-10-21 ### Features -af25752linter: Add `unicorn/prefer-math-min-max` (#6621) (Brian Liu) -5095f02linter: Added fixer for duplicate prefix in valid title jest rule (#6699) (Tapan Prakash) -e9976d4linter: Add title whitespace fixer for jest valid title rule (#6669) (Tapan Prakash) -45f02d5linter: Add `unicorn/consistent-empty-array-spread` (#6695) (Brian Liu) -01a35bblinter/eslint: Show ignore patterns in `eslint/no-unused-vars` diagnostic messages (#6696) (DonIsaac) ### Bug Fixes -1bcd707editor: Update config sent to language server (#6724) (Nicholas Rayburn) -ce25c45linter: Panic in `disable-directives` (#6677) (dalaoshu) -a5de230linter/import: `import/no-duplicates` handles namespace imports correctly (#6694) (DonIsaac) -b0b6ac7linter/no-cond-assign: False positive when assignment is in body statement (#6665) (camchenry) ### Performance -6a76ea8linter/no-unused-vars: Use default IgnorePattern when /^_/ is provided as a pattern (#6697) (DonIsaac) ### Refactor -d6609e9linter: Use `run_on_jest_node` for existing lint rules (#6722) (camchenry) -97195eclinter: Add `run_on_jest_node` to run rules on only jest nodes (#6721) (camchenry) -155fe7elinter: Allow `Semantic` to be passed for collecting Jest nodes (#6720) (camchenry) -ad8f281linter: Use iter for collecting jest nodes (#6719) (camchenry) -dc19a8flinter: Use iterator for collecting jest imports (#6718) (camchenry) -29c1447linter: `jest/valid-title` fixer to use `Span::shrink` method (#6703) (Tapan Prakash) -2eb984alinter: Add missing `should_run` implementations (#6666) (camchenry) -23f88b3linter/import: Better diagnostic messages for `import/no-duplicates` (#6693) (DonIsaac) --------- Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
65 lines
1.8 KiB
TOML
65 lines
1.8 KiB
TOML
[package]
|
|
name = "oxc_linter"
|
|
version = "0.10.1"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include = ["/examples", "/src"]
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = false
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_allocator = { workspace = true }
|
|
oxc_ast = { workspace = true }
|
|
oxc_cfg = { workspace = true }
|
|
oxc_codegen = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_ecmascript = { workspace = true }
|
|
oxc_index = { workspace = true }
|
|
oxc_macros = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_regular_expression = { workspace = true }
|
|
oxc_resolver = { workspace = true }
|
|
oxc_semantic = { workspace = true }
|
|
oxc_span = { workspace = true, features = ["schemars", "serialize"] }
|
|
oxc_syntax = { workspace = true }
|
|
|
|
aho-corasick = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
cow-utils = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
globset = { workspace = true }
|
|
itertools = { workspace = true }
|
|
json-strip-comments = { workspace = true }
|
|
language-tags = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
memchr = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
once_cell = { workspace = true }
|
|
phf = { workspace = true, features = ["macros"] }
|
|
rayon = { workspace = true }
|
|
regex = { workspace = true }
|
|
rust-lapper = { workspace = true }
|
|
rustc-hash = { workspace = true }
|
|
schemars = { workspace = true, features = ["indexmap2"] }
|
|
serde = { workspace = true, features = ["derive"] }
|
|
serde_json = { workspace = true }
|
|
simdutf8 = { workspace = true }
|
|
url = { workspace = true }
|
|
|
|
[dev-dependencies]
|
|
insta = { workspace = true }
|
|
markdown = { workspace = true }
|
|
project-root = { workspace = true }
|