Skip to content

Commit

Permalink
Sort keys in vitest.js
Browse files Browse the repository at this point in the history
  • Loading branch information
gndelia committed Nov 7, 2024
1 parent d6d7e9f commit e53e062
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions vitest.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ module.exports = {
extends: ['plugin:@vitest/legacy-recommended'],
plugins: ['@vitest'],
rules: {
// equivalent to mocha/no-skipped-tests
'@vitest/no-disabled-tests': 'error',
// equivalent to mocha/no-exclusive-tests
'@vitest/no-focused-tests': 'error',
// equivalent to mocha/no-setup-in-describe
'@vitest/require-hook': 'warn',
// equivalent to mocha/no-skipped-tests
'@vitest/no-disabled-tests': 'error'
'@vitest/require-hook': 'warn'
}
}

0 comments on commit e53e062

Please sign in to comment.