create-react-app — 如何将 EXTEND_ESLINT 设置为 true?

Kir*_*oss 8 environment-variables reactjs eslint create-react-app

.env在我的项目根目录中创建了一个文件,但我不熟悉环境/变量,所以我不确定如何集成该文件,以便我可以覆盖库存的、未弹出的 react-app eslint 设置。

// My .env file has just this

EXTEND_ESLINT = "true"
Run Code Online (Sandbox Code Playgroud)

CRA文档解释变量是什么,但不是现在把它设置为true。此外,“扩展 ESLint 配置”部分仅在 var 设置为 true 时有用。

// stock create-react-app package.json

"scripts": {
  "start": "react-scripts start",
  "build": "react-scripts build",
  "test": "react-scripts test",
  "eject": "react-scripts eject"
},
Run Code Online (Sandbox Code Playgroud)

Yuc*_*uci 25

在项目根目录下,您可以创建设置为的.env文件以扩展 ESLint 配置:EXTEND_ESLINTtrue

EXTEND_ESLINT=true
Run Code Online (Sandbox Code Playgroud)

这也有效:

EXTEND_ESLINT = "true"
Run Code Online (Sandbox Code Playgroud)

尝试使用create-react-app版本 3.4.1,即撰写本文时的最新版本。

例如,您可以覆盖 中的no-unused-vars规则package.json,如下所示:

...
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "lint": "eslint src"
  },
  "eslintConfig": {
    "extends": ["react-app"],
    "rules": {
      "no-unused-vars": "off"
    }
  },
...
Run Code Online (Sandbox Code Playgroud)

现在运行 linter,例如,npm run lint即使您已将值分配给变量但从未在您的应用程序中使用它,您也不会看到任何警告,这是您通常会在默认设置中看到的警告。例如:

const App = () => {
  let myVar = 1; // Never used
  ...
}
Run Code Online (Sandbox Code Playgroud)

注意: npm startandnpm run build等也将遵守扩展规则。


顺便说一下,原图package.json是这样的:

...
  "scripts": {
    "start": "react-scripts start",
    "build": "react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject"
  },
  "eslintConfig": {
    "extends": "react-app"
  },
...
Run Code Online (Sandbox Code Playgroud)

注意:另一种配置 ESLint 的方法是eslintConfigpackage.json文件中删除条目并在项目根目录中创建.eslintrc.eslintrc.json,如下所示:

{
 "extends": ["react-app"],
 "rules": {
   "no-unused-vars": "off"
 }
}
Run Code Online (Sandbox Code Playgroud)

[更新]如果您发现 react-scripts 不遵守您对 ESLint 规则的更改,这很可能是由缓存引起的。目前这是该项目的一个未决问题。您可以手动禁用缓存,node_modules/react-scripts/config/webpack.config.js如下所示:

          use: [
            {
              options: {
                cache: true, // You can set it to false
                formatter: require.resolve('react-dev-utils/eslintFormatter'),
                eslintPath: require.resolve('eslint'),
                resolvePluginsRelativeTo: __dirname,
                // @remove-on-eject-begin
                ignore: isExtendingEslintConfig,
                baseConfig: isExtendingEslintConfig
                  ? undefined
                  : {
                      extends: [require.resolve('eslint-config-react-app')],
                    },
                useEslintrc: isExtendingEslintConfig,
                // @remove-on-eject-end
              },
Run Code Online (Sandbox Code Playgroud)

请注意,此解决方法仅适用于您的本地开发。您很可能不需要为构建管道做任何事情,因为管道通常从头开始构建;所以没有这样的缓存问题。

  • @EnZo,这是关于 eslint 缓存的,请参阅我的回复:https://github.com/facebook/create-react-app/issues/9007 (2认同)

Jan*_*Kim 6

经过几个小时的努力,感谢@Yuci,我的 eslint 终于理解了我的配置。

我没有直接修复 中的包文件,而是添加了 npm 脚本,以便始终在和node_modules/react-scripts/config/webpack.config.js的开始处清除缓存。这样,您就不必担心将来“意外”重建软件包——未来的我并不那么聪明。npm run startnpm run buildrm -rf node_modules; npm install

在 中packages.json,更改脚本实体,如下所示:

  "scripts": {
    "start": "npm run clear_cache:eslint && react-scripts start",
    "build": "npm run clear_cache:eslint && react-scripts build",
    "test": "react-scripts test",
    "eject": "react-scripts eject",
    "clear_cache:eslint": "rm -rf node_modules/.cache/eslint-loader"
  },
Run Code Online (Sandbox Code Playgroud)