10 Star 46 Fork 12

codingplayboy/react-blog

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
.eslintrc 1.00 KB
一键复制 编辑 原始数据 按行查看 历史
{
"parser": "babel-eslint",
"parserOptions": {
"ecmaFeatures": {
"jsx": true, // 支持jsx
"modules": false
}
},
"plugins": [
"babel",
"react"
],
"extends": [
"standard",
"standard-react"
],
"rules": {
"strict": 0,
"semi": [1, "always"],
"quotes": [
1,
"single"
],
"indent": [
"warn",
2,
{
"SwitchCase": 1
}
],
"comma-spacing": [
1,
{
"before": false,
"after": true
}
],
"no-unused-vars": [
1,
{
// 允许声明未使用变量
"vars": "local",
// 参数不检查
"args": "none"
}
],
//必须使用 if(){} 中的{}
"curly": [
2,
"all"
],
"no-useless-constructor": 0,
"react/no-did-mount-set-state": 0,
"react/prop-types": 0
},
"env": {
"browser": true,
"es6": true
},
"globals": {
"__DEV__": false,
"__TEST__": false,
"__PROD__": false
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/codingplayboy/react-blog.git
git@gitee.com:codingplayboy/react-blog.git
codingplayboy
react-blog
react-blog
master

搜索帮助