Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/oxc_linter/src/rules/nextjs/no_typos.rs
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ pub struct NoTypos;
declare_oxc_lint!(
/// ### What it does
///
/// Prevent common typos in Next.js's data fetching functions
/// Detects common typos in Next.js data fetching function names.
///
/// ### Why is this bad?
///
/// Next.js will not call incorrectly named data fetching functions, causing pages to render without expected data.
///
/// ### Examples
///
Expand Down
Loading