1
2
3
4
5
6
7
8
9
10
11
12
13
14
| import type { OxlintConfig } from 'oxlint';
|
| const unicorn: OxlintConfig = {
| rules: {
| 'unicorn/consistent-function-scoping': 'off',
| 'unicorn/no-process-exit': 'error',
| 'unicorn/no-single-promise-in-promise-methods': 'off',
| 'unicorn/no-useless-spread': 'off',
| 'unicorn/prefer-global-this': 'off',
| 'unicorn/prefer-module': 'error',
| },
| };
|
| export { unicorn };
|
|