|
| 1 | +// @ts-expect-error missing types |
| 2 | +import pluginUnicorn from 'eslint-plugin-unicorn' |
| 3 | +import type { FlatConfigItem } from 'eslint-flat-config-utils' |
| 4 | + |
| 5 | +export default function unicorn(): FlatConfigItem[] { |
| 6 | + return [ |
| 7 | + { |
| 8 | + name: 'nuxt/tooling/unicorn', |
| 9 | + plugins: { |
| 10 | + unicorn: pluginUnicorn, |
| 11 | + }, |
| 12 | + rules: { |
| 13 | + // Pass error message when throwing errors |
| 14 | + 'unicorn/error-message': 'error', |
| 15 | + // Uppercase regex escapes |
| 16 | + 'unicorn/escape-case': 'error', |
| 17 | + // Array.isArray instead of instanceof |
| 18 | + 'unicorn/no-instanceof-array': 'error', |
| 19 | + // Ban `new Array` as `Array` constructor's params are ambiguous |
| 20 | + 'unicorn/no-new-array': 'error', |
| 21 | + // Prevent deprecated `new Buffer()` |
| 22 | + 'unicorn/no-new-buffer': 'error', |
| 23 | + // Lowercase number formatting for octal, hex, binary (0x1'error' instead of 0X1'error') |
| 24 | + 'unicorn/number-literal-case': 'error', |
| 25 | + // textContent instead of innerText |
| 26 | + 'unicorn/prefer-dom-node-text-content': 'error', |
| 27 | + // includes over indexOf when checking for existence |
| 28 | + 'unicorn/prefer-includes': 'error', |
| 29 | + // Prefer using the node: protocol |
| 30 | + 'unicorn/prefer-node-protocol': 'error', |
| 31 | + // Prefer using number properties like `Number.isNaN` rather than `isNaN` |
| 32 | + 'unicorn/prefer-number-properties': 'error', |
| 33 | + // String methods startsWith/endsWith instead of more complicated stuff |
| 34 | + 'unicorn/prefer-string-starts-ends-with': 'error', |
| 35 | + // Enforce throwing type error when throwing error while checking typeof |
| 36 | + 'unicorn/prefer-type-error': 'error', |
| 37 | + // Use new when throwing error |
| 38 | + 'unicorn/throw-new-error': 'error', |
| 39 | + }, |
| 40 | + }, |
| 41 | + ] |
| 42 | +} |
0 commit comments