import type { OxlintConfig } from 'oxlint'; const config: OxlintConfig = { plugins: ['typescript', 'react', 'import'], rules: { 'typescript/no-explicit-any': 'warn', 'typescript/no-non-null-assertion': 'warn', }, settings: { react: { // 与仓库实际安装的 React 版本保持一致(apps/admin: ^19.2.5 → 19.2.7) version: '19.2.7', }, }, }; export default config;