Skip to content

Commit

Permalink
chore: slight reformatting
Browse files Browse the repository at this point in the history
  • Loading branch information
danielroe committed Apr 22, 2024
1 parent a59e57c commit 3baadb5
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@ export default createConfigForNuxt({
'./example',
],
},
}).append({
files: ['test/**'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
}).append(
{
files: ['test/**'],
rules: {
'@typescript-eslint/no-explicit-any': 'off',
},
},
}, {
rules: {
'@typescript-eslint/no-invalid-void-type': 'off',
// TODO: remove this rule
'@typescript-eslint/no-explicit-any': 'off',
{
rules: {
'@typescript-eslint/no-invalid-void-type': 'off',
// TODO: remove this rule
'@typescript-eslint/no-explicit-any': 'off',
},
},
})
)

0 comments on commit 3baadb5

Please sign in to comment.