vtcode 0.123.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
id: no-debugger
language: typescript
severity: error
message: Remove `debugger` statement before committing.
note: |
  `debugger` statements pause execution in environments with a debugger
  attached. They should never ship to production. Remove them or replace
  with proper breakpoint configuration in your IDE.
rule:
  kind: debugger_statement
files:
  - "**/*.ts"
  - "**/*.tsx"
  - "**/*.js"
  - "**/*.jsx"
  - "!node_modules/**"