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
id: no-alloc-digit-count
valid:
  - |
      let digits = n.checked_ilog10().unwrap_or(0) + 1;
  - |
      let s = n.to_string();
      println!("{}", s);
  - |
      let len = items.to_string().len();
invalid:
  - |
      let digits = n.to_string().chars().count();
  - |
      let width = num.to_string().chars().count();