vize_patina 0.73.0

Patina - The quality checker for Vize code linting
Documentation
1
2
3
4
5
6
7
8
9
10
//! SSR-specific lint rules.
//!
//! These rules help detect SSR-unfriendly code patterns that would cause
//! errors when running on the server (Node.js, Deno, Bun).

mod no_browser_globals_in_ssr;
mod no_hydration_mismatch;

pub use no_browser_globals_in_ssr::NoBrowserGlobalsInSsr;
pub use no_hydration_mismatch::NoHydrationMismatch;