mirror of
https://github.com/danbulant/oxc
synced 2026-05-24 12:21:58 +00:00
39 lines
1,005 B
TOML
39 lines
1,005 B
TOML
[package]
|
|
name = "oxc_linter_plugin"
|
|
version = "0.0.0"
|
|
publish = false
|
|
authors.workspace = true
|
|
description.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
categories.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
oxc_span = { workspace = true }
|
|
oxc_query = { workspace = true }
|
|
oxc_diagnostics = { workspace = true }
|
|
oxc_semantic = { workspace = true }
|
|
oxc_linter = { workspace = true }
|
|
oxc_parser = { workspace = true }
|
|
oxc_allocator = { workspace = true }
|
|
ignore = { workspace = true }
|
|
|
|
serde = { workspace = true, features = ["derive"] }
|
|
trustfall = { workspace = true }
|
|
|
|
serde_yaml = "0.9.27"
|
|
located_yaml = "0.2.1"
|
|
path-calculate = "0.1.3"
|
|
|
|
[dev_dependencies]
|
|
miette = { workspace = true, features = ["fancy"] }
|