{ "$schema": "./node_modules/oxlint/configuration_schema.json", "categories": { "correctness": "warn", "suspicious": "off", "pedantic": "off", "perf": "warn", "style": "off", "restriction": "off", "nursery": "off" }, "rules": { "no-unused-vars": [ "error", { "argsIgnorePattern": "^_", "varsIgnorePattern": "^_", "caughtErrorsIgnorePattern": "^_", "destructuredArrayIgnorePattern": "^_", "caughtErrors": "none" } ], "no-restricted-imports": [ "error", { "patterns": ["ontime-types/src/*", "ontime-utils/src/*"] } ] }, "ignorePatterns": [ "**/node_modules/**", "**/dist/**", "apps/client/build/**", "apps/electron/assets/**", "**/ONTIME_VERSION.js" ] }