1 Star 0 Fork 7

水木年华/React-admin-vite

forked from 江一铭/React-admin-vite 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc.cjs 1.49 KB
一键复制 编辑 原始数据 按行查看 历史
江一铭 提交于 2023-05-04 10:31 . 1
module.exports = {
env: {
browser: true,// 浏览器环境中的全局变量。
es2021: true,
es6: true, // 启用除了 modules 以外的所有 ECMAScript 6 特性(该选项会自动设置 ecmaVersion 解析器选项为 6)。
node: true,// Node.js 全局变量和 Node.js 作用域。
},
extends: [
'plugin:react/recommended',
'standard-with-typescript'
],
overrides: [
],
parserOptions: {
ecmaVersion: "latest", // 5(默认), 你可以使用 6、7、8、9 或 10 来指定你想要使用的 ECMAScript 版本。你也可以用年份命名的版本号,你也可以用 latest 来指向最新的版本。
sourceType: "module", // 设置为 "script" (默认) 或 "module"(如果你的代码是 ECMAScript 模块)。
ecmaFeatures: { // 表示你想使用的额外的语言特性
jsx: true, // 启用 JSX
tsx: true, // 启用 tsx
}
},
plugins: [
"react",
"react-hooks",
"@typescript-eslint",
"axios"
],
rules: {
// eslint 的配置
"quotes": [ERROR, "single"], //单引号
'no-console': ['error', { allow: ['log'] }],// 允许使用 console.log()
"no-confusing-arrow": 0, // 禁止在可能与比较操作符相混淆的地方使用箭头函数
// eslint-plugin-react 的配置
"react/no-this-in-sfc": 0,
"react/prop-types": 0,
"react/display-name": "off",
// eslint-plugin-react-hooks 的配置
"react-hooks/rules-of-hooks": "error",
"react-hooks/exhaustive -deps": "warn"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/shuimulianhua/react-admin-vite.git
git@gitee.com:shuimulianhua/react-admin-vite.git
shuimulianhua
react-admin-vite
React-admin-vite
master

搜索帮助