代码拉取完成,页面将自动刷新
{
"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"
}
}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。