-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Welcome to the Charites Static Analysis Rule Catalog. Charites is an ultra-fast, zero-CGO, zero-Node.js static analysis compiler for Astro, React TSX, and Tailwind CSS design tokens.
In Greek mythology, the Charites (
In modern software engineering, Charites occupies a unique, highly respectful position:
Charites is one step ahead of conventional linters (evaluating relational graphs, design token resolution, and interaction data-flow), yet it never infringes on developer preference, aesthetic taste, or brand identity.
The Runway Fashion Principle: In fashion, choreographers do not dictate subjective standards of model beauty or forbid avant-garde styles. Rather, they enforce professional runway attitude, posture mechanics, stride rhythm, and safety so the model does not trip over the hem or suffer a wardrobe failure. Similarly, in Charites:
- Brand & Aesthetic Freedom (The Met Gala): Whether your design embraces Neo-Brutalism, Minimalist Bento, Skeuomorphism, or Cyberpunk Neon, you have full creative liberty.
- Ergonomic & Structural Integrity: Charites intervenes strictly when fundamental usability and safety are breached-such as tiny unclickable touch targets (
$< 44\text{px}$ ), un-isolated async actions causing duplicate mutations, broken mobile keyboard submit paths, collapsed dark-mode elevation shadows, or inverted spatial spacing.
Each of the Three Graces personifies a foundational static analysis domain in Charites:
flowchart TD
subgraph CHARITES [" CHARITES (The Three Graces of Frontend Engineering)"]
direction TB
A[" AGLAEA (Splendor & Radiance)\nCategory: theme.*\nDomain: Visual Grace, Token Governance & Contrast Safety"]
E[" EUPHROSYNE (Joy & Delight)\nCategory: ux.*\nDomain: Cognitive Flow, Spatial Rhythm & Interaction Safety"]
T[" THALIA (Festivity & Flourishing)\nCategory: a11y.* & responsive.*\nDomain: Universal Access & Inclusive Ergonomics"]
end
Aglaea represents visual elegance, harmony of form, and the purity of light.
-
Architectural Role: Acts as the dress code guardian of the design system (the Met Gala manifesto declared in
global.css). -
Invariant Scope: Eliminates arbitrary color/scalar leaks (
theme.hardcode-color), ensures dark/light theme parity without elevation collapse (theme.shadow-without-border-dark), resolves multi-theme tokens, and prevents specificity clashes between Tailwind v3 and v4. - Creative Freedom: Choose any palette, gradient, or theme mode-as long as it is tokenized and consistent across your application.
Euphrosyne represents good cheer, seamless ease of living, and freedom from user frustration.
- Architectural Role: Protects the user's cognitive flow, spatial rhythm, and interaction state safety.
-
Invariant Scope: Prevents duplicate form mutations via async reentry guards (
ux.submit-feedback-missing), eliminates infinite loading spinners on network failures (ux.unbounded-async-flag), maintains natural spatial hierarchy ($\text{Micro} < \text{Meso} < \text{Macro}$ viaux.spacing-inversion), ensures inline links are clearly discernible in prose (ux.camouflaged-link), and protects state persistence in multi-step workflows (ux.wizard-state-not-persisted). - Creative Freedom: Style your components in any aesthetic movement-as long as the interaction body language remains transparent, communicative, and safe for the user.
Thalia represents abundance, social harmony, and opening the celebration to everyone without barrier.
- Architectural Role: Ensures universal accessibility and touch-first ergonomics across all devices and physical capabilities.
-
Invariant Scope: Enforces Apple HIG / WCAG 2.2 touch targets (
$\ge 44 \times 44\text{px}$ viaa11y.touch-target-size), safeguards mobile viewports against iOS Safari auto-zoom traps (a11y.input-ios-zoom-hazard), links form errors programmatically (a11y.error-not-announced), and eliminates modal keyboard traps (a11y.keyboard-trap-missing-escape). - Creative Freedom: Build any layout while guaranteeing that screen reader users, keyboard navigators, and mobile touch users participate with equal dignity.
| Category | Rules Count | Documentation |
|---|---|---|
a11y |
16 | a11y |
browser |
12 | browser |
theme |
32 | theme |
| Rule ID | Category | Severity | Description | Documentation |
|---|---|---|---|---|
a11y.button-type-missing |
a11y |
WARN |
Enforces explicit type attribute on elements inside forms to prevent unintended form submission | a11y.button-type-missing |
a11y.dialog-missing-aria |
a11y |
ERROR |
Enforces that custom modal dialogs declare aria-modal="true" and have an accessible name | a11y.dialog-missing-aria |
a11y.empty-interactive |
a11y |
ERROR |
Enforces accessible names on interactive elements (buttons, links) containing only icons or visual elements | a11y.empty-interactive |
a11y.error-not-announced |
a11y |
ERROR |
Ensures form controls with aria-invalid are programmatically linked to error messages via aria-describedby (WCAG 3.3.1) | a11y.error-not-announced |
a11y.form-input-missing-name |
a11y |
WARN |
Ensures form input controls declare an identifying name or id attribute for form submission and autofill (WCAG 4.1.2) | a11y.form-input-missing-name |
a11y.form-label-composite-control |
a11y |
WARN |
Warns when is directly bound to a composite multi-field control causing screen reader ambiguity | a11y.form-label-composite-control |
a11y.form-label-missing-control |
a11y |
ERROR |
Enforces that Shadcn UI containing also contains an associated or input element | a11y.form-label-missing-control |
a11y.img-missing-alt |
a11y |
ERROR |
Enforces required 'alt' attribute on Astro |
a11y.img-missing-alt |
a11y.input-cramped-padding |
a11y |
WARN |
Flags input controls with cramped vertical padding or height under 42px that clip text and impede touch targeting | a11y.input-cramped-padding |
a11y.input-ios-zoom-hazard |
a11y |
WARN |
Prevents forced Safari iOS viewport auto-zoom by requiring at least 16px font size on inputs on mobile viewports | a11y.input-ios-zoom-hazard |
a11y.keyboard-trap-missing-escape |
a11y |
ERROR |
Enforces that custom modal dialogs provide an Escape key listener or an accessible dismiss mechanism | a11y.keyboard-trap-missing-escape |
a11y.label-missing-control |
a11y |
ERROR |
Ensures label htmlFor attributes match an existing input control ID in the same document (WCAG 1.3.1) | a11y.label-missing-control |
a11y.missing-focus-ring |
a11y |
WARN |
Enforces visible focus indicator when suppressing default outline with outline-none (WCAG 2.4.7) | a11y.missing-focus-ring |
a11y.placeholder-as-label |
a11y |
ERROR |
Flags form inputs relying solely on placeholder attributes without a persistent label or accessible name (WCAG 3.3.2) | a11y.placeholder-as-label |
a11y.touch-target-size |
a11y |
WARN |
Enforces minimum 44x44px physical touch target size on interactive controls (Apple HIG / WCAG 2.5.8) | a11y.touch-target-size |
a11y.touch-target-spacing |
a11y |
WARN |
Enforces at least 8px spacing between adjacent interactive elements to prevent miss-taps (WCAG 2.5.8) | a11y.touch-target-spacing |
browser.appearance-native-override |
browser |
WARN |
Enforces explicit appearance-none on form controls with custom styling to prevent WebKit/Safari native UI clashes | browser.appearance-native-override |
browser.chrome-only-api |
browser |
WARN |
Flags reliance on Chromium-exclusive APIs without cross-browser fallbacks for Firefox and Safari | browser.chrome-only-api |
browser.date-input-format-assumption |
browser |
ERROR |
Prohibits localized string splitting assumptions on HTML5 date input values in favor of normative ISO 8601 parsing | browser.date-input-format-assumption |
browser.experimental-api-no-featuredetect |
browser |
ERROR |
Detects invocation of experimental Web APIs without runtime feature detection guards | browser.experimental-api-no-featuredetect |
browser.firefox-only-api |
browser |
WARN |
Flags usage of legacy Gecko/Firefox-exclusive DOM extensions and APIs without standard W3C equivalents | browser.firefox-only-api |
browser.hover-only-interaction |
browser |
ERROR |
Ensures interactive actions and state reveals have keyboard and touch counterparts instead of relying solely on hover | browser.hover-only-interaction |
browser.non-passive-scroll-listener |
browser |
WARN |
Enforces { passive: true } option on touch and wheel event listeners to prevent main thread scroll blocking | browser.non-passive-scroll-listener |
browser.obsolete-vendor-prefix |
browser |
WARN |
Detects obsolete CSS vendor prefixes and incomplete -webkit-line-clamp multi-line truncation triads | browser.obsolete-vendor-prefix |
browser.safari-only-api |
browser |
WARN |
Flags unguarded Apple WebKit/Safari-proprietary APIs without universal web platform fallbacks | browser.safari-only-api |
browser.scrollbar-vendor-incomplete |
browser |
WARN |
Enforces bidirectional cross-engine scrollbar styling pairing between WebKit pseudo-elements and W3C standard properties | browser.scrollbar-vendor-incomplete |
browser.user-agent-sniffing |
browser |
WARN |
Flags conditional branching based on navigator.userAgent string sniffing and enforces W3C capability/feature detection | browser.user-agent-sniffing |
browser.webkit-only-api |
browser |
WARN |
Flags direct invocation of WebKit-prefixed legacy APIs without standard W3C equivalents or graceful fallbacks | browser.webkit-only-api |
theme.apply-bloat |
theme |
WARN |
Detects excessive use of @apply with more than 8 utility classes in CSS or style blocks | theme.apply-bloat |
theme.backdrop-blur-hardcode |
theme |
WARN |
Detects hardcoded arbitrary blur and backdrop-blur scalars in Tailwind utility classes | theme.backdrop-blur-hardcode |
theme.chart-color-hardcode |
theme |
ERROR |
Detects hardcoded color values on chart visualization components | theme.chart-color-hardcode |
theme.dual-strategy-collision |
theme |
WARN |
Detects conflicting dark mode strategies (@media vs .dark/[data-theme]) in the same style scope | theme.dual-strategy-collision |
theme.dynamic-class |
theme |
ERROR |
Detects unpadded dynamic template strings breaking Tailwind JIT class generation | theme.dynamic-class |
theme.focus-ring-hardcode |
theme |
WARN |
Detects hardcoded primitive palette or arbitrary hex colors on focus rings and outlines | theme.focus-ring-hardcode |
theme.gradient-hardcode |
theme |
WARN |
Detects hardcoded primitive, arbitrary hex, or monochrome colors in gradient stops | theme.gradient-hardcode |
theme.hardcode-border-color |
theme |
WARN |
Detects hardcoded border and divider colors using primitive palettes, raw hex literals, or static monochrome | theme.hardcode-border-color |
theme.hardcode-border-radius |
theme |
WARN |
Detects hardcoded arbitrary border-radius scalars in Tailwind utility classes | theme.hardcode-border-radius |
theme.hardcode-color |
theme |
WARN |
Detects hardcoded arbitrary hex or rgb color literals in Tailwind utility classes and arbitrary properties | theme.hardcode-color |
theme.hardcode-monochrome |
theme |
WARN |
Detects hardcoded monochrome utilities (white/black) that fail to adapt across light and dark themes | theme.hardcode-monochrome |
theme.hardcode-opacity-color |
theme |
ERROR |
Detects utility classes with hardcoded slash opacity modifiers that have official semantic token replacements | theme.hardcode-opacity-color |
theme.hardcode-shadow-color |
theme |
WARN |
Detects hardcoded color literals embedded in box-shadow declarations | theme.hardcode-shadow-color |
theme.hardcode-size |
theme |
WARN |
Detects hardcoded arbitrary size, spacing, or typography scalars in Tailwind utility classes | theme.hardcode-size |
theme.hardcode-z-index |
theme |
WARN |
Detects hardcoded arbitrary z-index scalars that trigger stacking context wars | theme.hardcode-z-index |
theme.hydration-theme-mismatch |
theme |
WARN |
Detects SSR root layouts lacking blocking inline script for theme initialization | theme.hydration-theme-mismatch |
theme.image-theme-hardcode |
theme |
WARN |
Detects graphic assets and logos in img tags lacking dark mode theme adaptation | theme.image-theme-hardcode |
theme.important-override |
theme |
ERROR |
Detects !important modifiers on color utility classes that break theme cascade and specificity hierarchy | theme.important-override |
theme.inline-style-hardcode |
theme |
ERROR |
Detects hardcoded color literals inside HTML/JSX style attributes that prevent theme cascade | theme.inline-style-hardcode |
theme.meta-theme-color-mismatch |
theme |
WARN |
Detects static meta theme-color tags lacking media prefers-color-scheme queries | theme.meta-theme-color-mismatch |
theme.missing-color-scheme |
theme |
WARN |
Detects dark theme definitions (.dark, [data-theme="dark"]) missing color-scheme property | theme.missing-color-scheme |
theme.missing-token-fallback |
theme |
WARN |
Detects CSS variable references without fallback values | theme.missing-token-fallback |
theme.nested-opacity-contrast |
theme |
WARN |
Detects nested opacity modifiers that compound to cause catastrophic text contrast degradation | theme.nested-opacity-contrast |
theme.no-reduced-motion |
theme |
WARN |
Detects global theme transitions without prefers-reduced-motion media query wrapping | theme.no-reduced-motion |
theme.primitive-in-component |
theme |
ERROR |
Detects direct usage of Tailwind primitive palette colors in component classes instead of semantic tokens | theme.primitive-in-component |
theme.pseudo-hardcode-color |
theme |
WARN |
Detects hardcoded primitive, arbitrary hex, or monochrome colors inside pseudo-element and pseudo-class variants | theme.pseudo-hardcode-color |
theme.shadow-without-border-dark |
theme |
WARN |
Detects elevated containers with shadow lacking border or ring indicators in dark mode | theme.shadow-without-border-dark |
theme.split-theme-state |
theme |
WARN |
Detects ad-hoc direct access to theme state via localStorage outside ThemeProvider | theme.split-theme-state |
theme.svg-hardcode-fill |
theme |
WARN |
Detects hardcoded color attributes on SVG markup preventing theme adaptation | theme.svg-hardcode-fill |
theme.token-source-drift |
theme |
ERROR |
Detects hardcoded color values bypassing the single source of truth design token pipeline | theme.token-source-drift |
theme.unlayered-token-definition |
theme |
ERROR |
Detects CSS custom property definitions declared outside @layer theme or @layer base | theme.unlayered-token-definition |
theme.unpaired-dark-variant |
theme |
WARN |
Detects one-sided dark theme variant declarations causing severe contrast collisions | theme.unpaired-dark-variant |
Charites processes project source code and design tokens through a unified 4-stage pipeline:
flowchart LR
subgraph Discovery ["1. Source & SSOT Discovery"]
TargetFiles["Target Files (*.astro, *.tsx)"]
TokensSSOT["Design Tokens SSOT (global.css, tokens.json)"]
end
subgraph Pipeline ["2. Extraction & Graph"]
TargetFiles --> Scanner["Fast Walker & Worker Pool (internal/scanner)"]
Scanner --> Parser["AST & IR Builder (internal/parser)"]
TokensSSOT --> TokenEngine["Token Subsystem (internal/token)"]
TokenEngine --> Graph["Directed Token Dependency Graph"]
end
subgraph Engine ["3. Static Analysis Across Categories"]
Parser --> Analyzer["IR Traversal Engine (internal/analyzer)"]
Graph --> Context["Read-Only Token Context Facade"]
Analyzer <--> RulesTheme["Theme Rules (internal/rules/theme)"]
Analyzer <--> RulesA11y["A11y Rules (internal/rules/a11y)"]
Analyzer <--> RulesResp["Responsive & Perf Rules"]
Context -.-> RulesTheme
Context -.-> RulesA11y
end
subgraph Output ["4. Reporting"]
RulesTheme --> Reporter["Reporter Engine (Terminal ANSI, JSON, MCP)"]
RulesA11y --> Reporter
RulesResp --> Reporter
end
-
Target Discovery & AST Construction:
internal/scannerdiscovers and walks workspace source files in parallel, streaming.astroand.tsxcomponents tointernal/parserto construct normalizedir.Nodestructures. -
Multi-Format SSOT Token Graph:
internal/tokenauto-discovers design token sources across both CSS (global.css,index.css,@theme) and JSON manifests (tokens.jsonW3C DTCG format). It parses custom properties (--*), nested themes (:root,.dark), and variable references (var(--...)), constructing a design-agnosticDirected Token Dependency Graphwith visited-set cycle detection and recursion budget limits. -
Stateless Traversal & Multi-Category Evaluation:
internal/analyzercoordinates parallel IR node traversal across modular rule domains:-
Theme Governance (
internal/rules/theme): Validates utility classes, stripping variants and ensuring opacity/color modifications use official semantic tokens declared in the graph. -
Accessibility Verification (
internal/rules/a11y): Replaces legacy regex heuristics (migrated fromcharites-legacy/a11y-checker.ts) with AST-grounded validation of label/input bindings, heading hierarchies, missing alt-text, and token-resolved WCAG 2.2 color contrast ratios. -
Responsive & Performance (
internal/rules/{responsive,perf}): Enforces Fitts's Law touch target ergonomics (>= 44x44px), modern@containerqueries, and Core Web Vitals (LCP, CLS, INP).
-
Theme Governance (
- Multi-Channel Delivery: Diagnostics are deterministically rendered for ANSI terminal output, streaming JSON envelopes, or MCP JSON-RPC 2.0 tool calls.
Charites enforces correctness, resilience, and zero false positives across four interconnected testing tiers:
flowchart TD
subgraph Suite ["The 4-Layer Verification Harness"]
subgraph L1 ["Layer 1: Unit & Subsystem Tests"]
U1["CSS Lexer & Parser Tests (internal/parser/css)"]
U2["Token Graph Cycles & DoS Budget (internal/token)"]
U3["Extractor & Scope Specificity (internal/token)"]
U4["IR Parser & AST Visitors (internal/parser)"]
end
subgraph L2 ["Layer 2: 1-SSOT Golden Tri-Corpus"]
G1["Positive (P1-P5): Verified true positives with exact line & span"]
G2["Negative (N1-N5): Zero false positives on valid tokens & Banana Test"]
G3["Adversarial (A1-A7): Resilience to cyclic vars, ternaries, obfuscation"]
end
subgraph L3 ["Layer 3: Monorepo Integration"]
I1["Upward Directory Discovery: global.css from nested subdirectories"]
I2["Multi-Scope Theme Switching: :root vs .dark resolution"]
I3["E2E CLI Parity: Terminal ANSI, Streaming JSON, MCP JSON-RPC 2.0"]
end
subgraph L4 ["Layer 4: Continuous Fuzz Testing"]
F1["Native Go 1.26 Fuzzing (tests/fuzz/css_fuzz_test.go)"]
F2["14,000+ Synthetic CSS Mutations: Zero Panics, Zero OOM, Zero Leaks"]
end
end
L1 --> L2
L2 --> L3
L3 --> L4
-
Layer 1 (Subsystem Units): Validates deterministic lexing, zero-panic parsing, graph cycle detection (
ErrCycleDetected), and traversal recursion budget limits (ErrEvaluationBudgetExceeded). -
Layer 2 (1-SSOT Golden Tri-Corpus): Every static analysis rule is tested against an exhaustive 17-pattern matrix in
tests/correctness/<rule-id>/:- Positive (P1-P5): Obvious, indirect, helper-wrapped, deeply nested, and aliased violations.
- Negative (N1-N5): Valid tokens, explicit ignore directives, third-party libraries, standard HTML, and untokenized custom values (the Banana Test).
- Adversarial (A1-A7): Template literal interpolations, ternary conditionals, spread props, dynamic classes, variable shadowing, and cyclic references.
-
Layer 3 (Monorepo Integration): Validates end-to-end multi-scope token resolution (
:rootvs.dark), upward directory walks, and CLI output rendering intests/token_integration_test.go. -
Layer 4 (Continuous Fuzzing): Employs native Go 1.26 fuzzing (
tests/fuzz/css_fuzz_test.go) over tens of thousands of malformed mutations to guarantee memory safety and crash resilience.
- Deterministic Execution: Pure-function AST visitors without file system or network I/O during evaluation.
- SSOT Token Evidence: Static rules only enforce semantic token replacements that genuinely exist in the project's token dependency graph.
-
1-SSOT Tri-Corpus Assurance: Every rule is validated against a 3-part golden test corpus (
positive/,negative/,adversarial/). -
Canonical Semgrep Identifiers: All rules follow the
<category>.<slug>standard.
A11y (16 rules)
- A11y Overview
a11y.button-type-missinga11y.dialog-missing-ariaa11y.empty-interactivea11y.error-not-announceda11y.form-input-missing-namea11y.form-label-composite-controla11y.form-label-missing-controla11y.img-missing-alta11y.input-cramped-paddinga11y.input-ios-zoom-hazarda11y.keyboard-trap-missing-escapea11y.label-missing-controla11y.missing-focus-ringa11y.placeholder-as-labela11y.touch-target-sizea11y.touch-target-spacing
Browser (12 rules)
- Browser Overview
browser.appearance-native-overridebrowser.chrome-only-apibrowser.date-input-format-assumptionbrowser.experimental-api-no-featuredetectbrowser.firefox-only-apibrowser.hover-only-interactionbrowser.non-passive-scroll-listenerbrowser.obsolete-vendor-prefixbrowser.safari-only-apibrowser.scrollbar-vendor-incompletebrowser.user-agent-sniffingbrowser.webkit-only-api
Cls (16 rules)
- Cls Overview
cls.client-only-hydration-popcls.collapsible-height-jumpcls.dynamic-content-without-reserved-spacecls.dynamic-table-reflowcls.font-display-missingcls.font-import-late-discoverycls.layout-trigger-animationcls.layout-trigger-transitioncls.text-icon-late-reflowcls.unadjusted-font-metriccls.unconstrained-carouselcls.unreserved-ad-containercls.unreserved-fixed-headercls.unsized-embed-framecls.unsized-imagecls.unstable-scrollbar-gutter
Design (1 rules)
Ergonomy (5 rules)
Inp (16 rules)
- Inp Overview
inp.context-re-render-cascadeinp.expensive-render-computationinp.expensive-style-mutationinp.heavy-event-handlerinp.hydration-contentioninp.hydration-heavy-islandinp.large-interaction-layout-scopeinp.layout-thrashinginp.missing-start-transitioninp.missing-touch-actioninp.render-blocking-scriptinp.repeated-state-updateinp.sync-layout-effectinp.unbounded-collection-renderinp.unbounded-effect-depsinp.unyielded-long-task
Lcp (16 rules)
- Lcp Overview
lcp.blocked-critical-fontlcp.client-only-lcp-contentlcp.critical-head-style-bloatlcp.external-font-discovery-delaylcp.heavy-raster-lcp-assetlcp.image-source-density-mismatchlcp.lazy-loaded-lcp-imagelcp.lcp-content-visibility-suppressionlcp.legacy-critical-font-resourcelcp.missing-critical-origin-hintlcp.missing-lcp-image-preloadlcp.oversized-lcp-resource-selectionlcp.preload-font-cors-mismatchlcp.render-blocking-head-scriptlcp.undiscoverable-lcp-imagelcp.unhinted-lcp-image-priority
Mobile (5 rules)
Performance (16 rules)
- Performance Overview
performance.astro-island-boundary-overlapperformance.astro-over-prefetchingperformance.astro-unnecessary-client-directiveperformance.astro-unoptimized-local-imageperformance.react-context-domain-couplingperformance.react-derived-state-in-effectperformance.react-effect-missing-cleanupperformance.react-index-as-keyperformance.react-inline-prop-memoperformance.react-redundant-function-memoizationperformance.react-static-heavy-importperformance.react-unstable-hook-referenceperformance.tailwind-duplicate-arbitrary-rulesperformance.tailwind-duplicate-utility-definitionperformance.tailwind-dynamic-class-concatenationperformance.tailwind-untracked-package-source
Pwa (10 rules)
- Pwa Overview
pwa.apple-meta-missingpwa.icon-maskable-missingpwa.insecure-context-resourcepwa.manifest-missingpwa.manifest-required-fields-missingpwa.pwa-cache-runtime-api-riskpwa.service-worker-missingpwa.service-worker-no-offline-fallbackpwa.service-worker-registrationpwa.start-url-inconsistency
Responsive (18 rules)
- Responsive Overview
responsive.aspect-ratio-overflowresponsive.container-overconstraintresponsive.desktop-only-contentresponsive.dynamic-viewport-inconsistencyresponsive.fixed-width-overflowresponsive.flex-child-overflowresponsive.fractional-width-gap-driftresponsive.grid-min-columnresponsive.horizontal-overflowresponsive.image-overflowresponsive.keyboard-obstructionresponsive.missing-breakpointresponsive.mobile-density-overloadresponsive.mobile-text-overflowresponsive.safe-area-missingresponsive.unwrapped-table-overflowresponsive.viewport-meta-missingresponsive.viewport-unit-leak
Semantic (1 rules)
Theme (32 rules)
- Theme Overview
theme.apply-bloattheme.backdrop-blur-hardcodetheme.chart-color-hardcodetheme.dual-strategy-collisiontheme.dynamic-classtheme.focus-ring-hardcodetheme.gradient-hardcodetheme.hardcode-border-colortheme.hardcode-border-radiustheme.hardcode-colortheme.hardcode-monochrometheme.hardcode-opacity-colortheme.hardcode-shadow-colortheme.hardcode-sizetheme.hardcode-z-indextheme.hydration-theme-mismatchtheme.image-theme-hardcodetheme.important-overridetheme.inline-style-hardcodetheme.meta-theme-color-mismatchtheme.missing-color-schemetheme.missing-token-fallbacktheme.nested-opacity-contrasttheme.no-reduced-motiontheme.primitive-in-componenttheme.pseudo-hardcode-colortheme.shadow-without-border-darktheme.split-theme-statetheme.svg-hardcode-filltheme.token-source-drifttheme.unlayered-token-definitiontheme.unpaired-dark-variant
Ux (20 rules)
- Ux Overview
ux.camouflaged-linkux.competing-primary-ctaux.destructive-action-unconfirmedux.disabled-control-no-explanationux.empty-collection-unhandledux.missing-autofillux.monolithic-form-bloatux.multiline-input-misuseux.nav-overflow-chunkingux.number-input-identity-misuseux.number-input-missing-boundsux.orphaned-error-stateux.radio-overchoiceux.silent-catch-swallowux.spacing-inversionux.spacing-rhythm-driftux.submit-feedback-missingux.unbounded-async-flagux.unconventional-home-linkux.unthrottled-input-handler