module.exports = { root: true, extends: '@react-native', rules: { // 关闭分号要求 semi: 'off', // 关闭引号风格检查 quotes: 'off', // 关闭逗号风格检查 'comma-dangle': 'off', // 关闭未定义变量检查(全局变量) 'no-undef': 'off', // 关闭未使用变量检查 'no-unused-vars': 'warn', // 关闭 == 和 === 强制检查 eqeqeq: 'off', // 关闭空组件自闭合检查 'react/self-closing-comp': 'off', // 关闭 React Hooks 依赖检查 'react-hooks/exhaustive-deps': 'warn', // 关闭字符串中花括号空格检查 'react/jsx-curly-spacing': 'off', // 关闭 JSX 缩进检查 'react/jsx-indent': 'off', // 关闭操作符空格检查 'space-infix-ops': 'off', // 关闭关键字空格检查 'keyword-spacing': 'off', // 关闭对象花括号空格检查 'object-curly-spacing': 'off', // 关闭数组括号空格检查 'array-bracket-spacing': 'off', // 关闭尾随空格检查 'no-trailing-spaces': 'off', // 关闭多余空行检查 'no-multiple-empty-lines': 'off', // 关闭 console 检查 'no-console': 'off', // 关闭 Prettier 检查 'prettier/prettier': 'off', }, };