2026-03-21 09:44:05 -07:00
|
|
|
{
|
|
|
|
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
|
|
|
|
"plugins": ["react", "typescript", "vitest", "unicorn", "import"],
|
|
|
|
|
"env": {
|
|
|
|
|
"browser": true,
|
|
|
|
|
"node": true,
|
|
|
|
|
"es2022": true
|
|
|
|
|
},
|
|
|
|
|
"categories": {
|
|
|
|
|
"correctness": "error",
|
|
|
|
|
"suspicious": "warn"
|
|
|
|
|
},
|
|
|
|
|
"rules": {
|
|
|
|
|
"no-console": "warn",
|
|
|
|
|
"no-var": "error",
|
|
|
|
|
"prefer-const": "error",
|
|
|
|
|
"eqeqeq": ["error", "always"],
|
|
|
|
|
"no-unused-vars": "off",
|
|
|
|
|
"no-undef": "off",
|
|
|
|
|
|
|
|
|
|
"typescript/no-unused-vars": [
|
|
|
|
|
"error",
|
|
|
|
|
{ "argsIgnorePattern": "^_", "varsIgnorePattern": "^_" }
|
|
|
|
|
],
|
|
|
|
|
"typescript/no-explicit-any": "error",
|
2026-03-21 10:48:48 -07:00
|
|
|
"typescript/no-non-null-assertion": "error",
|
2026-03-21 09:44:05 -07:00
|
|
|
"typescript/consistent-type-imports": [
|
|
|
|
|
"error",
|
|
|
|
|
{ "prefer": "type-imports" }
|
|
|
|
|
],
|
|
|
|
|
|
|
|
|
|
"react/react-in-jsx-scope": "off",
|
|
|
|
|
"react/rules-of-hooks": "error",
|
|
|
|
|
"react/exhaustive-deps": "error",
|
|
|
|
|
"react/jsx-key": "error",
|
|
|
|
|
"react/no-array-index-key": "error",
|
|
|
|
|
"react/self-closing-comp": "warn",
|
|
|
|
|
|
Fix no-shadow and consistent-function-scoping lint violations
Resolves all 11 no-shadow and 16 consistent-function-scoping oxlint
warnings and promotes both rules to errors in .oxlintrc.json.
no-shadow: renamed Drizzle callback params (sports→s, matches→m,
seasons→s) to avoid shadowing outer imports; removed shadowed
destructures (eq, inArray) from where callbacks; renamed inner
template→bracketTemplate, prev→currentTimers, season→ss, name→teamName
(with name: teamName fix to preserve semantics).
consistent-function-scoping: moved formatDate, getRankBadge,
getMovementIndicator, getPositionBadge, getStatusBadge, toDateStr,
elo (×2), weightedPick, sortByMatchNumber (×2) to module scope;
moved formatTime (×2), isValidLeagueName, getDraftTimes,
makeSeasonQueues to file scope in test files.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 10:14:54 -07:00
|
|
|
"import/no-duplicates": "error",
|
2026-03-21 10:51:21 -07:00
|
|
|
"import/no-unassigned-import": ["error", {
|
|
|
|
|
"allow": ["**/*.css", "@testing-library/jest-dom", "@testing-library/cypress/add-commands"]
|
|
|
|
|
}],
|
Fix no-shadow and consistent-function-scoping lint violations
Resolves all 11 no-shadow and 16 consistent-function-scoping oxlint
warnings and promotes both rules to errors in .oxlintrc.json.
no-shadow: renamed Drizzle callback params (sports→s, matches→m,
seasons→s) to avoid shadowing outer imports; removed shadowed
destructures (eq, inArray) from where callbacks; renamed inner
template→bracketTemplate, prev→currentTimers, season→ss, name→teamName
(with name: teamName fix to preserve semantics).
consistent-function-scoping: moved formatDate, getRankBadge,
getMovementIndicator, getPositionBadge, getStatusBadge, toDateStr,
elo (×2), weightedPick, sortByMatchNumber (×2) to module scope;
moved formatTime (×2), isValidLeagueName, getDraftTimes,
makeSeasonQueues to file scope in test files.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-21 10:14:54 -07:00
|
|
|
|
|
|
|
|
"no-shadow": "error",
|
2026-03-21 10:51:21 -07:00
|
|
|
"unicorn/consistent-function-scoping": "error",
|
|
|
|
|
"unicorn/prefer-add-event-listener": "error",
|
|
|
|
|
"unicorn/require-module-specifiers": "error"
|
2026-03-21 09:44:05 -07:00
|
|
|
},
|
|
|
|
|
"overrides": [
|
|
|
|
|
{
|
|
|
|
|
"files": ["**/__tests__/**", "**/*.test.ts", "**/*.test.tsx", "cypress/**"],
|
|
|
|
|
"rules": {
|
|
|
|
|
"no-console": "off",
|
|
|
|
|
"typescript/no-explicit-any": "off"
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
],
|
|
|
|
|
"ignorePatterns": [
|
|
|
|
|
"build/**",
|
|
|
|
|
"dist/**",
|
|
|
|
|
"node_modules/**",
|
|
|
|
|
"drizzle/**",
|
|
|
|
|
".react-router/**",
|
|
|
|
|
"cypress/fixtures/**"
|
|
|
|
|
]
|
|
|
|
|
}
|