Skip to content

Commit

Permalink
chore: ignoring linting on generated files
Browse files Browse the repository at this point in the history
  • Loading branch information
holloway committed Dec 12, 2024
1 parent 4e29dd1 commit 8c3b969
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
6 changes: 4 additions & 2 deletions client/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
// @ts-check
import withNuxt from './.nuxt/eslint.config.mjs'

export default withNuxt({
export default withNuxt([
{ ignores: ['**/generated/'] },
{
rules: {
'vue/comma-dangle': 'off',
'vue/html-closing-bracket-newline': 'off',
Expand Down Expand Up @@ -33,4 +35,4 @@ export default withNuxt({
}
]
}
})
}])
4 changes: 2 additions & 2 deletions client/nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export default defineNuxtConfig({
},
eslint: {
config: {
stylistic: true
}
stylistic: true,
},
}
})

0 comments on commit 8c3b969

Please sign in to comment.