{ "$schema": "./node_modules/oxlint/configuration_schema.json", "plugins": ["typescript", "import", "unicorn"], "ignorePatterns": ["node_modules", ".next", "storybook-static"], "rules": { "func-style": ["error", "declaration", { "allowArrowFunctions": true }], "no-console": ["warn", { "allow": ["group", "groupCollapsed", "groupEnd"] }], "no-control-regex": "off", "no-debugger": "error", "no-duplicate-imports": "error", "no-undef": "off", "no-unused-vars": "off", "no-redeclare": "off", "import/no-duplicates": "error", "typescript/no-redeclare": "error", "typescript/consistent-type-imports": ["error", { "prefer": "type-imports", "fixStyle": "inline-type-imports" }], "typescript/explicit-function-return-type": "off", "typescript/explicit-module-boundary-types": "off", "typescript/no-empty-object-type": ["error", { "allowInterfaces": "with-single-extends" }], "typescript/no-empty-function": "off", "typescript/no-explicit-any": "off", "typescript/no-unused-vars": ["warn", { "vars": "all", "varsIgnorePattern": "^_", "args": "after-used", "argsIgnorePattern": "^_" }] } }