1 Star 0 Fork 0

george123456/outboard-fuse

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
.eslintrc 2.36 KB
一键复制 编辑 原始数据 按行查看 历史
Matt Mazzini 提交于 2021-10-08 15:04 . adding fuse-react repo
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"extends": [
"react-app",
"airbnb",
"plugin:prettier/recommended"
],
"plugins": [
"prettier",
"unused-imports"
],
"settings": {
"import/resolver": {
"node": {
"paths": [
"src"
]
}
}
},
"rules": {
// Prettier configs based on airbnb guide
"prettier/prettier": [
"warn",
{
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": false,
"jsxSingleQuote": false,
"printWidth": 100,
"proseWrap": "always",
"quoteProps": "as-needed",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"endOfLine": "auto",
}
],
"react/jsx-filename-extension": [
"warn",
{
"extensions": [
".js",
".jsx"
]
}
],
"import/no-extraneous-dependencies": ["warn", {"devDependencies": true}],
"no-unused-vars": "off",
"no-console": "off",
"no-use-before-define": "off",
"no-underscore-dangle": "off",
"no-param-reassign": "off", // mutating redux state in redux-toolkit.
"import/no-unresolved": "off", // raw-loader
"global-require": "off", // raw-loader
"react/no-array-index-key": "off",
"react/no-unescaped-entities": "off",
"react/destructuring-assignment": "off",
"react/jsx-props-no-spreading": "off",
"react/state-in-constructor": "off",
"react/no-danger": "off",
"react/prop-types": "off",
"react/forbid-prop-types": "off",
"react/require-default-props": "off",
"react/default-props-match-prop-types": "off",
"react/no-unused-prop-types": "off",
"react/react-in-jsx-scope": "off", // after react v17
"react/jsx-uses-react": "off", // after react v17
"react/jsx-no-bind": "off",
"unused-imports/no-unused-imports": "warn"
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/george22222/outboard-fuse.git
git@gitee.com:george22222/outboard-fuse.git
george22222
outboard-fuse
outboard-fuse
main

搜索帮助