簡體   English   中英

有沒有辦法更改彈出的 create-react-app 的 eslint 規則?

[英]Is there a way to change eslint rules for ejected create-react-app?

我正在使用 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-disable no-underscore-dangle */./src/store/dashboards/reducers.js的頂部。 同樣,它似乎注冊到編輯器,而不是編譯器。 我還嘗試將 eslint 配置提取到它自己的文件.eslintrc 還是不編譯。

您可以在此處查看完整的存儲庫: https : //github.com/bensoutendijk/mouseflow-react

@devaent的解決方案(重新安裝node_modulesyarn.lock )有很大幫助,但每次我向.eslintrc.json添加另一條規則時,我都必須重新做。

過去 3 天我一直在受苦,幸好今天找到了另一個解決方案。

config/webpack.config.js第 340 行添加useEslintrc: true如下,它對我useEslintrc: true

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

我從這篇文章 [ 鏈接] 中得到了這個想法。

僅供參考,我在下面分享我的.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
  }
}

我能夠通過刪除 /node_modules/ 和 package-lock.json 來解決這個問題

然而,不幸的是,這個問題不斷出現。 如果有人有解釋,我會接受它作為答案。

編輯:最終判決, npm uninstall -g eslint

似乎 eslint 錯誤正在破壞構建。 您可以通過在 webpack.config.js 的 eslint-loader 配置中添加“emitWarning: true”來禁用它

 {
      test: /\.(js|mjs|jsx|ts|tsx)$/,
      enforce: 'pre',
      use: [
        {
          options: {
            cache: true,
            formatter: require.resolve('react-dev-utils/eslintFormatter'),
            eslintPath: require.resolve('eslint'),
            resolvePluginsRelativeTo: __dirname,
            emitWarning: true,
          },
          loader: require.resolve('eslint-loader'),
        },
      ],
      include: paths.appSrc,
    },

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM