mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.9.7] - 2024-09-23 ### Features -d24985elinter: Add `oxc-security/api-keys` (#5906) (DonIsaac) -f9b44c5linter: Add unicode sets support to `no-useless-escape` rule (#5974) (camchenry) -0f19848linter: Implement `no-unexpected-multiline` rule (#5911) (camchenry) -16fe383linter: Implement `no-extend-native` rule (#5867) (Cam McHenry) ### Bug Fixes -eed9ac7linter: Include actual span size in `no-regex-spaces` diagnostic (#5957) (camchenry) -40c89c2linter: Move `promise/avoid-new` to style category (#5961) (DonIsaac) ### Performance -608d637linter: Use `aho-corasick` instead of `regex` for string matching in `jsx-a11y/img-redundant-alt` (#5892) (camchenry) -3148d4blinter: Check file path after checking node kind for `nextjs/no-head-element` (#5868) (Cam McHenry) ### Refactor -0a5a4a9linter: Use parsed patterns for `unicorn/no-hex-escape` (#5985) (camchenry) -2cf2eddlinter: Use parsed patterns in `no-empty-character-class` rule (#5980) (camchenry) -a9a8e2alinter: Use regex parser in `eslint/no-regex-spaces` (#5952) (camchenry) -05f592blinter: Use parsed patterns in `unicorn/prefer-string-starts-ends-with` (#5949) (camchenry) -3273b64linter: Use parsed patterns for `unicorn/prefer-string-replace-all` rule (#5943) (camchenry) -ba7b01flinter: Add `LinterBuilder` (#5714) (DonIsaac) -db4f16asemantic: Call `with_trivias` before `build_with_jsdoc` (#5875) (Boshen) -3d13c6dsemantic: Impl `IntoIterator` for `&AstNodes` (#5873) (DonIsaac) ### Testing -b681c9alinter: Import test cases for `no-empty-character-class` (#5981) (camchenry) -767602blinter: Add regression test for #5227 (#5975) (camchenry) --------- Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com> Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
64 lines
1.8 KiB
TOML
64 lines
1.8 KiB
TOML
[package]
|
|
name = "oxc_linter"
|
|
version = "0.9.7"
|
|
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_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 = { version = "1.0.0-alpha.19" }
|
|
project-root = { workspace = true }
|