vtcode 0.123.7

A Rust-based terminal coding agent with modular architecture supporting multiple LLM providers
id: no-puts-debug
language: Ruby
severity: warning
message: Remove `puts`/`p` debug statements; use a logger instead.
note: |
  `puts` and `p` write directly to stdout and are not configurable for
  log level, format, or destination. Use `Logger` or a structured logging
  library for production code. Debug statements should be removed before
  merging.
rule:
  any:
    - pattern: puts $VAR
    - pattern: puts
    - pattern: p $VAR
    - pattern: p
files:
  - "**/*.rb"
  - "!**/Rakefile"
  - "!**/Gemfile"
  - "!**/examples/**"