mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.14.0] - 2024-12-01 ### Features -32f860dlinter: Add support for ignorePatterns property within config file (#7092) (Nicholas Rayburn) -053bc08linter: Implement typescript/no-unused-expressions (#7498) (camc314) -60b28fclinter: Implement typescript/consistent-generic-constructors (#7497) (camc314) -bd0693blinter: Allow lint rules with the same name (#7496) (camc314) -2ac9f96linter: Typescript/no-inferrable-types (#7438) (camc314) -8d89fdclinter: Add eslint/prefer-spread (#7112) (tbashiyy) ### Bug Fixes -123b5b7linter: False positive in `typescript/consistent-type-definitions` (#7560) (dalaoshu) -cc078d6linter: Add missing error message prefix to `eslint/no-const-assign` (Boshen) -17c0dd8linter: Fix `jsx_no_script_url` doc failed to build (Boshen) ### Performance -6cc7a48linter: Use `OsString` for module cache hash (#7558) (Boshen) -6655345linter: Use `FxDashMap` for module cache (#7522) (overlookmotel) ### Documentation -a6b0100linter: Fix config example headings (#7562) (Boshen) ### Refactor -0f3f67alinter: Add capability of adding semantic data to module record (#7561) (Boshen) -8392177linter: Clean up the runtime after the module record change (#7557) (Boshen) -823353alinter: Clean up APIs for `ModuleRecord` (#7556) (Boshen) -f847d0flinter: Call `str::ends_with` with array not slice (#7526) (overlookmotel) -2077ff9linter: Remove `once_cell` (#7510) (Boshen) -169b8bflinter, syntax: Introduce type alias `FxDashMap` (#7520) (overlookmotel) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
66 lines
1.9 KiB
TOML
66 lines
1.9 KiB
TOML
[package]
|
|
name = "oxc_linter"
|
|
version = "0.14.0"
|
|
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 }
|
|
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 }
|