vtcode 0.123.10

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
17
18
id: no-inline-style
language: Html
severity: hint
message: Avoid inline `style` attributes; use CSS classes instead.
note: |
  Inline styles mix presentation with markup and cannot be overridden by
  external stylesheets without `!important`. Use CSS classes for
  maintainability and consistency. Inline styles are acceptable for
  dynamic values set by JavaScript.
rule:
  kind: attribute
  has:
    field: name
    pattern: style
files:
  - "**/*.html"
  - "**/*.htm"
  - "**/*.xhtml"