Skip to content

Commit

Permalink
chore: tweak ts/js rules
Browse files Browse the repository at this point in the history
  • Loading branch information
0t4u committed Aug 13, 2024
1 parent 24423e5 commit e1dab0f
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ export default function config(rootdir) {
'@stylistic/no-multiple-empty-lines': [ 'error', { 'max': 1 }],
'@stylistic/eol-last': [ 'warn', 'always' ],
'@stylistic/no-trailing-spaces': [ 'warn', { 'ignoreComments': true }],
'@typescript-eslint/require-await': [ 'warn' ],
'camelcase': [ 'off' ]
}
},
Expand All @@ -73,7 +74,7 @@ export default function config(rootdir) {
'**/*.mjs'
],
rules: {
'require-await': [ 'error' ],
'require-await': [ 'warn' ],
'no-unused-vars': [ 'warn' ]
}
}
Expand Down

0 comments on commit e1dab0f

Please sign in to comment.