nextjs/no-typos Correctness ​
What it does ​
Prevent common typos in Next.js's data fetching functions
Why is this bad? ​
Examples ​
Examples of incorrect code for this rule:
javascript
export default function Page() {
return <div></div>;
}
export async function getServurSideProps() {}
Examples of correct code for this rule:
javascript
export default function Page() {
return <div></div>;
}
export async function getServerSideProps() {}
How to use ​
To enable this rule in the CLI or using the config file, you can use:
bash
oxlint --deny nextjs/no-typos --nextjs-plugin
json
{
"plugins": ["nextjs"],
"rules": {
"nextjs/no-typos": "error"
}
}