mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
## [0.11.0] - 2024-11-03 -9fd9f4flinter: [**BREAKING**] Sync sindresorhus/globals; removed Object.prototype properties from builtin and es* globals (#6991) (Boshen) ### Features -6b619daeditor: Listen to config file changes and trigger a didChangeConfiguration update (#6964) (Nicholas Rayburn) -7872927editor/vscode: Support window/showMessage event (#7085) (Nicholas Rayburn) -2184588linter: Do not bail for unmatched rules yet (#7093) (Boshen) -a6fcd81linter: Add `import/no-commonjs` rule (#6978) (Dmitry Zakharov) -1691cablinter: Support user-configurable secrets for `oxc-security/api-keys` (#5938) (DonIsaac) -610621clinter: Implement `react/style-prop-object` (#6342) (Albert Kaaman) -1e2f012linter: Add `oxc/no-map-spread` (#6751) (DonIsaac) -1c66473linter: Implement `eslint/prefer-object-has-own` (#6905) (tomoya yanagibashi) ### Bug Fixes -ebf3753editor: Fix onConfigChange to send the correct config for didChangeConfiguration notification (#6962) (Nicholas Rayburn) -79bf74alinter: Check is_reference_to_global_variable in `no-array-constructor` (#7067) (Naoya Yoshizawa) -38d1f78linter: Remove confusing help text for now (#7081) (Cam McHenry) -147e2e4linter: Allow replacing rule when none are enabled yet (#7014) (camchenry) -7aa496alinter: Remove unsafe fixer of `no-useless-spread` (#6655) (dalaoshu) -f5a7134linter/no-unused-vars: False positive for discarded reads within sequences (#6907) (DonIsaac) ### Documentation -4551baalinter: Document `rules` (#6983) (Boshen) ### Refactor -a8dc75dlinter: Remove unused CLI result types (#7088) (camchenry) -8f1460elinter: Move `LintPlugins` from `LintOptions` to `LintConfig` (#6932) (DonIsaac) ### Testing -c35d3f2linter: Improve test failure output (#6975) (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>
65 lines
1.8 KiB
TOML
65 lines
1.8 KiB
TOML
[package]
|
|
name = "oxc_linter"
|
|
version = "0.11.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 }
|
|
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 }
|