mirror of
https://github.com/denoland/deno.git
synced 2025-03-04 09:57:11 -05:00

This commit adds an unstable lint plugin API. Plugins are specified in the `deno.json` file under `lint.plugins` option like so: ``` { "lint": { "plugins": [ "./plugins/my-plugin.ts", "jsr:@deno/lint-plugin1", "npm:@deno/lint-plugin2" ] } } ``` The API is considered unstable and might be subject to changes in the future. Plugin API was modelled after ESLint API for the most part, but there are no guarantees for compatibility. The AST format exposed to plugins is closely modelled after the AST that `typescript-eslint` uses. Lint plugins use the visitor pattern and can add diagnostics like so: ``` export default { name: "lint-plugin", rules: { "plugin-rule": { create(context) { return { Identifier(node) { if (node.name === "a") { context.report({ node, message: "should be b", fix(fixer) { return fixer.replaceText(node, "_b"); }, }); } }, }; }, }, }, } satisfies Deno.lint.Plugin; ``` Besides reporting errors (diagnostics) plugins can provide automatic fixes that use text replacement to apply changes. --------- Co-authored-by: Marvin Hagemeister <marvin@deno.com> Co-authored-by: David Sherret <dsherret@gmail.com>
200 lines
6.6 KiB
TOML
200 lines
6.6 KiB
TOML
# Copyright 2018-2025 the Deno authors. MIT license.
|
|
|
|
[package]
|
|
name = "deno"
|
|
version = "2.1.9"
|
|
authors.workspace = true
|
|
default-run = "deno"
|
|
edition.workspace = true
|
|
exclude = ["bench/testdata/lsp_benchdata/"]
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Provides the deno executable"
|
|
|
|
[[bin]]
|
|
name = "deno"
|
|
path = "main.rs"
|
|
doc = false
|
|
|
|
[[test]]
|
|
name = "integration"
|
|
path = "integration_tests_runner.rs"
|
|
harness = false
|
|
|
|
[[bench]]
|
|
name = "deno_bench"
|
|
harness = false
|
|
path = "./bench/main.rs"
|
|
|
|
[[bench]]
|
|
name = "lsp_bench_standalone"
|
|
harness = false
|
|
path = "./bench/lsp_bench_standalone.rs"
|
|
|
|
[features]
|
|
default = ["upgrade", "__vendored_zlib_ng"]
|
|
# A feature that enables heap profiling with dhat on Linux.
|
|
# 1. Compile with `cargo build --profile=release-with-debug --features=dhat-heap`
|
|
# 2. Run the executable. It will output a dhat-heap.json file.
|
|
# 3. Open the json file in https://nnethercote.github.io/dh_view/dh_view.html
|
|
dhat-heap = ["dhat"]
|
|
# A feature that enables the upgrade subcommand and the background check for
|
|
# available updates (of deno binary). This is typically disabled for (Linux)
|
|
# distribution packages.
|
|
upgrade = []
|
|
# A dev feature to disable creations and loading of snapshots in favor of
|
|
# loading JS sources at runtime.
|
|
hmr = ["deno_runtime/hmr", "deno_snapshots/disable"]
|
|
# Vendor zlib as zlib-ng
|
|
__vendored_zlib_ng = ["flate2/zlib-ng-compat", "libz-sys/zlib-ng"]
|
|
|
|
[build-dependencies]
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting", "only_snapshotted_js_sources"] }
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
lazy-regex.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
zstd.workspace = true
|
|
flate2 = { workspace = true, features = ["default"] }
|
|
deno_error.workspace = true
|
|
|
|
[target.'cfg(unix)'.build-dependencies]
|
|
glibc_version = "0.1.2"
|
|
|
|
[target.'cfg(windows)'.build-dependencies]
|
|
winapi.workspace = true
|
|
winres.workspace = true
|
|
|
|
[dependencies]
|
|
deno_ast = { workspace = true, features = ["bundler", "cjs", "codegen", "proposal", "react", "sourcemap", "transforms", "typescript", "view", "visit"] }
|
|
deno_cache_dir = { workspace = true, features = ["sync"] }
|
|
deno_config = { workspace = true, features = ["sync", "workspace"] }
|
|
deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
deno_doc = { version = "=0.164.0", features = ["rust", "comrak"] }
|
|
deno_error.workspace = true
|
|
deno_graph = { version = "=0.87.2" }
|
|
deno_lib.workspace = true
|
|
deno_lint = { version = "0.71.0" }
|
|
deno_lockfile.workspace = true
|
|
deno_media_type = { workspace = true, features = ["data_url", "decoding", "module_specifier"] }
|
|
deno_npm.workspace = true
|
|
deno_npm_cache.workspace = true
|
|
deno_package_json = { workspace = true, features = ["sync"] }
|
|
deno_path_util.workspace = true
|
|
deno_resolver = { workspace = true, features = ["sync"] }
|
|
deno_runtime = { workspace = true, features = ["include_js_files_for_snapshotting"] }
|
|
deno_semver.workspace = true
|
|
deno_snapshots = { workspace = true }
|
|
deno_task_shell = "=0.20.2"
|
|
deno_telemetry.workspace = true
|
|
deno_terminal.workspace = true
|
|
libsui.workspace = true
|
|
node_resolver.workspace = true
|
|
|
|
anstream = "0.6.14"
|
|
async-trait.workspace = true
|
|
base64.workspace = true
|
|
bincode = "=1.3.3"
|
|
boxed_error.workspace = true
|
|
bytes.workspace = true
|
|
cache_control.workspace = true
|
|
capacity_builder.workspace = true
|
|
chrono = { workspace = true, features = ["now"] }
|
|
clap = { version = "=4.5.16", features = ["env", "string", "wrap_help", "error-context"] }
|
|
clap_complete = "=4.5.24"
|
|
clap_complete_fig = "=4.5.2"
|
|
color-print.workspace = true
|
|
console_static_text.workspace = true
|
|
crossterm = "0.28.1"
|
|
dashmap.workspace = true
|
|
data-encoding.workspace = true
|
|
dhat = { version = "0.3.3", optional = true }
|
|
dissimilar = "=1.0.4"
|
|
dotenvy = "0.15.7"
|
|
dprint-plugin-json = "=0.19.4"
|
|
dprint-plugin-jupyter = "=0.1.5"
|
|
dprint-plugin-markdown = "=0.17.8"
|
|
dprint-plugin-typescript = "=0.93.3"
|
|
fancy-regex = "=0.10.0"
|
|
faster-hex.workspace = true
|
|
# If you disable the default __vendored_zlib_ng feature above, you _must_ be able to link against `-lz`.
|
|
flate2.workspace = true
|
|
fs3.workspace = true
|
|
glob = "0.3.1"
|
|
http.workspace = true
|
|
http-body.workspace = true
|
|
http-body-util.workspace = true
|
|
hyper-util.workspace = true
|
|
import_map = { version = "=0.21.0", features = ["ext"] }
|
|
indexmap.workspace = true
|
|
jsonc-parser = { workspace = true, features = ["cst", "serde"] }
|
|
jupyter_runtime = { package = "runtimelib", version = "=0.19.0", features = ["tokio-runtime"] }
|
|
lazy-regex.workspace = true
|
|
libc.workspace = true
|
|
libz-sys.workspace = true
|
|
log = { workspace = true, features = ["serde"] }
|
|
lsp-types.workspace = true
|
|
malva = "=0.11.0"
|
|
markup_fmt = "=0.18.0"
|
|
memmem.workspace = true
|
|
monch.workspace = true
|
|
notify.workspace = true
|
|
once_cell.workspace = true
|
|
open = "5.0.1"
|
|
p256.workspace = true
|
|
pathdiff = "0.2.1"
|
|
percent-encoding.workspace = true
|
|
phf.workspace = true
|
|
pretty_yaml = "=0.5.0"
|
|
quick-junit = "^0.3.5"
|
|
rand = { workspace = true, features = ["small_rng"] }
|
|
regex.workspace = true
|
|
ring.workspace = true
|
|
rustyline.workspace = true
|
|
rustyline-derive = "=0.7.0"
|
|
serde.workspace = true
|
|
serde_repr.workspace = true
|
|
sha2.workspace = true
|
|
spki = { version = "0.7", features = ["pem"] }
|
|
sqlformat = "=0.3.2"
|
|
strsim = "0.11.1"
|
|
sys_traits = { workspace = true, features = ["getrandom", "filetime", "libc", "real", "strip_unc", "winapi"] }
|
|
tar.workspace = true
|
|
tempfile.workspace = true
|
|
text-size = "=1.1.0"
|
|
text_lines = "=0.6.0"
|
|
thiserror.workspace = true
|
|
tokio.workspace = true
|
|
tokio-util.workspace = true
|
|
tower-lsp.workspace = true
|
|
tracing = { version = "0.1", features = ["log", "default"] }
|
|
twox-hash.workspace = true
|
|
typed-arena = "=2.0.2"
|
|
unicode-width = "0.1.3"
|
|
uuid = { workspace = true, features = ["serde"] }
|
|
walkdir.workspace = true
|
|
which.workspace = true
|
|
zeromq.workspace = true
|
|
zip = { version = "2.1.6", default-features = false, features = ["deflate-flate2"] }
|
|
zstd.workspace = true
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
junction.workspace = true
|
|
winapi = { workspace = true, features = ["knownfolders", "mswsock", "objbase", "shlobj", "tlhelp32", "winbase", "winerror", "winsock2"] }
|
|
|
|
[target.'cfg(unix)'.dependencies]
|
|
nix.workspace = true
|
|
shell-escape = "=0.1.5"
|
|
|
|
[dev-dependencies]
|
|
deno_bench_util.workspace = true
|
|
pretty_assertions.workspace = true
|
|
sys_traits = { workspace = true, features = ["memory"] }
|
|
test_util.workspace = true
|
|
|
|
[package.metadata.winres]
|
|
# This section defines the metadata that appears in the deno.exe PE header.
|
|
OriginalFilename = "deno.exe"
|
|
LegalCopyright = "© Deno contributors & Deno Land Inc. MIT licensed."
|
|
ProductName = "Deno"
|
|
FileDescription = "Deno: A secure runtime for JavaScript and TypeScript"
|