2 Star 3 Fork 1

pleaseAnswer/react18+ts_fbms

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 1.13 KB
一键复制 编辑 原始数据 按行查看 历史
zhouyuexin 提交于 2024-01-18 16:52 . feat: 登录实战-动态交互实现
module.exports = {
env: {
browser: true,
es2021: true,
node: true
},
extends: ['eslint:recommended', 'plugin:@typescript-eslint/recommended', 'plugin:react/recommended'],
overrides: [
{
env: {
node: true
},
files: ['.eslintrc.{js,cjs}'],
parserOptions: {
sourceType: 'script'
}
}
],
parser: '@typescript-eslint/parser',
parserOptions: {
ecmaVersion: 'latest',
sourceType: 'module'
},
plugins: ['@typescript-eslint', 'react'],
/*
* "off" 或 0 ==> 关闭规则
* "warn" 或 1 ==> 打开的规则作为警告(不影响代码执行)
* "error" 或 2 ==> 规则作为一个错误(代码不能执行,界面报错)
*/
rules: {
'react/react-in-jsx-scope': 'off',
'no-console': 'off', // 禁止使用console
'no-unused-vars': 'off', // 禁止定义未使用的变量
'@typescript-eslint/no-unused-vars': 'off',
'no-debugger': 'error', // 禁止使用debugger
'no-var': 'error', // 要求使用 let 或 const 而不是 var
'@typescript-eslint/no-namespace': 'off',
'@typescript-eslint/no-explicit-any': 'off'
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/pleaseanswer/react18-ts-fbms.git
git@gitee.com:pleaseanswer/react18-ts-fbms.git
pleaseanswer
react18-ts-fbms
react18+ts_fbms
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385