Skip to content

Commit 70a15da

Browse files
committed
ESLint: Disable unicorn/no-array-sort rule
1 parent db5c7b3 commit 70a15da

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

eslint.config.mjs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,8 @@ export default [
115115
'unicorn/no-array-for-each': 'off',
116116
// disabled because `toReversed` is not "widely supported" yet
117117
'unicorn/no-array-reverse': 'off',
118+
// disabled because `toSorted` is not "widely supported" yet
119+
'unicorn/no-array-sort': 'off',
118120
// disabled because it is annoying in some cases...
119121
'unicorn/no-await-expression-member': 'off',
120122
// disabled because we need `null` since JSON has no `undefined`

0 commit comments

Comments
 (0)