UNPKG

@sparticuz/eslint-config

Version:

Sparticuz's shareable config for eslint

29 lines (28 loc) 777 B
import unicornPlugin from "eslint-plugin-unicorn"; export default [ unicornPlugin.configs.recommended, { name: "@sparticuz/eslint-config/unicorn.ts", rules: { "unicorn/expiring-todo-comments": [ "warn", { allowWarningComments: false, terms: ["@todo"], }, ], "unicorn/import-style": [ "error", { styles: { "node:path": { named: true, }, }, }, ], "unicorn/no-null": "off", "unicorn/switch-case-braces": "off", }, }, ];