Skip to content
Open
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
4 changes: 2 additions & 2 deletions docs/content/1.packages/0.module.md
Original file line number Diff line number Diff line change
Expand Up @@ -194,10 +194,10 @@ export default withNuxt(
// ...Prepend some flat configs in front
)
// Override some rules in a specific config, based on their name
.override('nuxt/typescript', {
.override('nuxt/typescript/rules', {
rules: {
// ...Override rules, for example:
'@typescript-eslint/ban-types': 'off'
"valid-typeof": "error"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We should override a @typescript-eslint/ rule

Copy link
Author

@IFreshman IFreshman Feb 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hm what about "@typescript-eslint/no-deprecated": "off" ?

}
})
// ...you can chain more operations as needed
Expand Down
Loading