gpt4 book ai didi

javascript - 有没有办法更改弹出的 create-react-app 的 eslint 规则?

转载 作者:行者123 更新时间:2023-12-02 22:15:03 27 4
gpt4 key购买 nike

我正在使用 React 和 NPM 构建一个应用程序。

我已经像这样设置了我的 package.json

{
"name": "mouseflow-react",
"version": "0.1.0",
"private": true,
"dependencies": {
"@babel/core": "7.7.4",
"@material-ui/core": "^4.1.3",
"@material-ui/icons": "^4.1.3",
"@material-ui/styles": "^4.2.1",
"@svgr/webpack": "4.3.3",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@testing-library/user-event": "^7.1.2",
"axios": "^0.19.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
"babel-plugin-named-asset-import": "^0.3.5",
"babel-preset-react-app": "^9.1.0",
"camelcase": "^5.3.1",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"cookie": "^0.4.0",
"css-loader": "3.2.0",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"eslint": "^6.6.0",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "3.0.2",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "4.3.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "4.0.0-beta.5",
"http-proxy-middleware": "^0.20.0",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"mini-css-extract-plugin": "0.8.0",
"optimize-css-assets-webpack-plugin": "5.0.3",
"pnp-webpack-plugin": "1.5.0",
"postcss-flexbugs-fixes": "4.1.0",
"postcss-loader": "3.0.0",
"postcss-normalize": "8.0.1",
"postcss-preset-env": "6.7.0",
"postcss-safe-parser": "4.0.1",
"prop-types": "^15.7.2",
"react": "^16.12.0",
"react-app-polyfill": "^1.0.5",
"react-dev-utils": "^10.0.0",
"react-dom": "^16.12.0",
"react-redux": "^7.1.0",
"react-router": "^5.1.2",
"react-router-dom": "^5.1.2",
"redux": "^4.0.4",
"redux-devtools-extension": "^2.13.8",
"redux-logger": "^3.0.6",
"redux-thunk": "^2.3.0",
"resolve": "1.12.2",
"resolve-url-loader": "3.1.1",
"sass-loader": "8.0.0",
"semver": "6.3.0",
"style-loader": "1.0.0",
"terser-webpack-plugin": "2.2.1",
"ts-pnp": "1.1.5",
"url-loader": "2.3.0",
"webpack": "4.41.2",
"webpack-dev-server": "3.9.0",
"webpack-manifest-plugin": "2.2.0",
"workbox-webpack-plugin": "4.3.1"
},
"scripts": {
"start": "node scripts/start.js",
"build": "node scripts/build.js",
"test": "node scripts/test.js"
},
"eslintConfig": {
"extends": ["react-app", "airbnb"],
"rules": {
"no-underscore-dangle": 0,
"react/jsx-indent-props": [
"error",
4
],
"react/jsx-indent": [
"error",
4
],
"indent": [
"error",
4
],
"semi": [
"error",
"always"
],
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline"
}
]
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"jest": {
"roots": [
"<rootDir>/src"
],
"collectCoverageFrom": [
"src/**/*.{js,jsx,ts,tsx}",
"!src/**/*.d.ts"
],
"setupFiles": [
"react-app-polyfill/jsdom"
],
"setupFilesAfterEnv": [
"<rootDir>/src/setupTests.js"
],
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.{js,jsx,ts,tsx}",
"<rootDir>/src/**/*.{spec,test}.{js,jsx,ts,tsx}"
],
"testEnvironment": "jest-environment-jsdom-fourteen",
"transform": {
"^.+\\.(js|jsx|ts|tsx)$": "<rootDir>/node_modules/babel-jest",
"^.+\\.css$": "<rootDir>/config/jest/cssTransform.js",
"^(?!.*\\.(js|jsx|ts|tsx|css|json)$)": "<rootDir>/config/jest/fileTransform.js"
},
"transformIgnorePatterns": [
"[/\\\\]node_modules[/\\\\].+\\.(js|jsx|ts|tsx)$",
"^.+\\.module\\.(css|sass|scss)$"
],
"modulePaths": [],
"moduleNameMapper": {
"^react-native$": "react-native-web",
"^.+\\.module\\.(css|sass|scss)$": "identity-obj-proxy"
},
"moduleFileExtensions": [
"web.js",
"js",
"web.ts",
"ts",
"web.tsx",
"tsx",
"json",
"web.jsx",
"jsx",
"node"
],
"watchPlugins": [
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname"
]
},
"babel": {
"presets": [
"react-app"
]
}
}

但是当我运行 npm start 时,我在控制台中收到以下错误:

Failed to compile.

./src/store/dashboards/reducers.js
Line 29:43: Unexpected dangling '_' in '_id' no-underscore-dangle
Line 36:36: Unexpected dangling '_' in '_id' no-underscore-dangle

Search for the keywords to learn more about each error.

我正在使用 VS Code,并且更改 package.json 中的 eslintConfig 属性似乎适用于 IDE,但不适用于运行应用程序。我还尝试添加: /* eslint-disable no-underscore-dangle */./src/store/dashboards/reducers.js 的顶部。同样,它似乎是向编辑器注册,而不是向编译器注册。我还尝试将 eslint 配置提取到其自己的文件 .eslintrc 中。仍然没有编译。

您可以在此处查看完整的存储库:https://github.com/bensoutendijk/mouseflow-react

最佳答案

@devaent 的解决方案(重新安装 node_modulesyarn.lock)有很大帮助,但我不得不重新做每次我向 .eslintrc.json 添加另一条规则时。

过去三天我一直深受其苦,幸运的是今天找到了另一个解决方案。

config/webpack.config.js 的第 340 行添加 useEslintrc: true 如下,它对我有用。

options: {
cache: true,
formatter: require.resolve('react-dev-utils/eslintFormatter'),
eslintPath: require.resolve('eslint'),
resolvePluginsRelativeTo: __dirname,
useEslintrc: true, // <= added line
},

我从这篇文章中得到了这个想法[ link ].

仅供引用,我在下面分享我的 .eslintrc.json

{
"env": {
"browser": true,
"commonjs": true,
"es2020": true
},
"extends": ["react-app", "plugin:react/recommended", "airbnb"],
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 11
},
"plugins": ["react"],
"rules": {
"no-unused-vars": 0,
"react/jsx-filename-extension": 0,
"linebreak-style": 0,
"jsx-quotes": 0,
"object-curly-newline": 0,
"react/prop-types": 0,
"react/destructuring-assignment": 0,
"comma-dangle": 0,
"arrow-body-style": 0,
"implicit-arrow-linebreak": 0,
"no-else-return": 0,
"array-bracket-spacing": 0,
"react/button-has-type": 0,
"import/prefer-default-export": 0,
"func-names": 0,
"no-underscore-dangle": 0,
"react/jsx-one-expression-per-line": 0,
"operator-linebreak": 0,
"jsx-a11y/media-has-caption": 0
}
}

关于javascript - 有没有办法更改弹出的 create-react-app 的 eslint 规则?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59417732/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com