mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.13.1] - 2024-11-23 ### Features -4ad26b9linter: Add `no-promise-in-callback` (#7307) (no-yan) -9558087oxlint: Auto detect config file in CLI (#7348) (Alexander S.) ### Bug Fixes -8507464linter: Hanging when source has syntax/is flow (#7432) (Cameron) -e88cf1blinter: Make `overrides` globs relative to config path (#7407) (camchenry) -9002e97linter: Add proper support for findIndex and findLastIndex for `unicorn/prefer-array-some` (#7405) (Dmitry Zakharov) ### Documentation -6730e3elinter: Add more examples for `unicorn/prefer-array-some` (#7411) (Dmitry Zakharov) ### Refactor -6c0d31blinter: Remove useless `const` declaration (#7430) (Song Gao) -c8adc46linter/no-unused-vars: Improve implementation to remove using SymbolFlags::Export (#7412) (Dunqing) -c90537flinter/only-used-in-recursion: Improve implementation to remove using SymbolFlags::Export (#7413) (Dunqing) ### Testing -779f479editor: Check if workspace configuration is updated (#7403) (Alexander S.) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
67 lines
2 KiB
TOML
67 lines
2 KiB
TOML
[package]
|
|
name = "oxc_linter"
|
|
version = "0.13.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, features = ["serialize"] }
|
|
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, features = ["serialize"] }
|
|
|
|
aho-corasick = { workspace = true }
|
|
bitflags = { workspace = true }
|
|
convert_case = { workspace = true }
|
|
cow-utils = { workspace = true }
|
|
dashmap = { workspace = true }
|
|
fast-glob = { workspace = true }
|
|
globset = { workspace = true, features = ["serde1"] }
|
|
itertools = { workspace = true }
|
|
json-strip-comments = { workspace = true }
|
|
language-tags = { workspace = true }
|
|
lazy_static = { workspace = true }
|
|
memchr = { workspace = true }
|
|
mime_guess = { workspace = true }
|
|
nonmax = { 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 }
|