加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc.cjs 856 Bytes
一键复制 编辑 原始数据 按行查看 历史
FFMMCC 提交于 2024-07-14 20:35 . feat:主页开发完成
/*
* @Author: FMC
* @Date: 2024-06-22 22:12:35
* @LastEditors: FMC
* @LastEditTime: 2024-07-07 20:34:07
* @FilePath: \three-run-game\.eslintrc.cjs
* @Description:
*/
module.exports = {
root: true,
env: { browser: true, es2020: true },
extends: [
'eslint:recommended',
'plugin:react/recommended',
'plugin:react/jsx-runtime',
'plugin:react-hooks/recommended',
],
ignorePatterns: ['dist', '.eslintrc.cjs'],
parserOptions: { ecmaVersion: 'latest', sourceType: 'module' },
settings: { react: { version: '18.2' } },
plugins: ['react-refresh'],
rules: {
'react/jsx-no-target-blank': 'off',
'react/no-unknown-property': 'off',
"react/prop-types": 0, //防止在react组件定义中缺少props验证
'react-refresh/only-export-components': [
'warn',
{ allowConstantExport: true },
],
},
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化