vtcode 0.125.1

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
id: prefer-symbol-over-proc
valid:
  - |
      list.map(&:to_s)
  - |
      list.select(&:even?)
  - |
      items.each { |v| puts v.name; v.save }
invalid:
  - |
      list.map { |v| v.to_s }
  - |
      list.select { |v| v.even? }
  - |
      list.each { |v| v.upcase }