diff options
author | Divy Srivastava <dj.srivastava23@gmail.com> | 2024-09-19 00:20:42 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-18 20:50:42 +0200 |
commit | fd860260ad0fd72d638c4cc69ff45c25dbaafaa6 (patch) | |
tree | 0add376973b7085460db21b1a609055909502880 /cli | |
parent | f347e779e0d1321d19a61de67295e7bd5edc3083 (diff) |
feat(lint): add `no-process-global` lint rule (#25709)
Closes https://github.com/denoland/deno/issues/25679
Diffstat (limited to 'cli')
-rw-r--r-- | cli/Cargo.toml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/Cargo.toml b/cli/Cargo.toml index b59667f82..209c40dc7 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -69,7 +69,7 @@ deno_config = { version = "=0.34.3", features = ["workspace", "sync"] } deno_core = { workspace = true, features = ["include_js_files_for_snapshotting"] } deno_doc = { version = "0.148.0", features = ["html", "syntect"] } deno_graph = { version = "=0.82.1" } -deno_lint = { version = "=0.66.0", features = ["docs"] } +deno_lint = { version = "=0.67.0", features = ["docs"] } deno_lockfile.workspace = true deno_npm = "=0.25.1" deno_package_json.workspace = true |