Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions apps/oxlint/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,5 @@ lazy-regex = { workspace = true }
[features]
default = []
allocator = ["dep:mimalloc-safe"]
oxlint2 = ["oxc_linter/oxlint2"]
disable_oxlint2 = ["oxc_linter/disable_oxlint2"]
2 changes: 2 additions & 0 deletions crates/oxc_linter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ description.workspace = true
default = []
ruledocs = ["oxc_macros/ruledocs"] # Enables the `ruledocs` feature for conditional compilation
language_server = ["oxc_data_structures/rope"] # For the Runtime to support needed information for the language server
oxlint2 = []
disable_oxlint2 = []

[lints]
workspace = true
Expand Down
2 changes: 1 addition & 1 deletion napi/oxlint2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ test = false
doctest = false

[dependencies]
oxlint = { workspace = true }
oxlint = { workspace = true, features = ["oxlint2"] }

napi = { workspace = true, features = ["async"] }
napi-derive = { workspace = true }
Expand Down
Loading