swc_ecma_lints 1.0.0

Linter for the swc project
Documentation
[package]
authors     = ["강동윤 <kdy1997.dev@gmail.com>"]
description = "Linter for the swc project"
edition     = "2021"
include     = ["Cargo.toml", "src/**/*.rs"]
license     = "Apache-2.0"
name        = "swc_ecma_lints"
repository  = "https://github.com/swc-project/swc.git"
version     = "1.0.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[lib]
bench = false

[dependencies]
auto_impl   = { workspace = true }
dashmap     = { workspace = true }
parking_lot = { workspace = true }
rayon       = { workspace = true }
regex       = { workspace = true }
serde       = { workspace = true, features = ["derive"] }

swc_atoms = { version = "2.0.0", path = "../swc_atoms" }
swc_common = { version = "1.0.0", path = "../swc_common", features = [
  "concurrent",
] }
swc_config = { version = "1.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "1.0.0", path = "../swc_ecma_ast", features = [
  "serde",
] }
swc_ecma_utils = { version = "1.0.0", path = "../swc_ecma_utils" }
swc_ecma_visit = { version = "1.0.0", path = "../swc_ecma_visit" }

[dev-dependencies]
swc_ecma_codegen         = { version = "1.0.0", path = "../swc_ecma_codegen" }
swc_ecma_parser          = { version = "1.0.0", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "1.0.0", path = "../swc_ecma_transforms_base" }
testing                  = { version = "1.0.0", path = "../testing" }

[features]
non_critical_lints = []