@0xaio/eslint-config-react-app 中文文档教程

发布于 6年前 浏览 17 项目主页 更新于 3年前

eslint-config-react-app

此软件包包含 Create React App 使用的可共享 ESLint 配置。
请参阅其文档:

Usage in Create React App Projects

使用此配置的最简单方法是使用 Create React App,默认包含它.

你不需要在Create React App项目中单独安装它。

Usage Outside of Create React App

如果你想在一个不是用Create React App构建的项目中使用这个ESLint配置,你可以通过以下步骤安装它。

首先,安装这个包、ESLint 和必要的插件。

  npm install --save-dev eslint-config-react-app babel-eslint@^7.2.3 eslint@^4.1.1 eslint-plugin-flowtype@^2.34.1 eslint-plugin-import@^2.6.0 eslint-plugin-jsx-a11y@^5.1.1 eslint-plugin-react@^7.1.0

然后在项目的根文件夹中创建一个名为 .eslintrc 的文件,其中包含以下内容:

  {
    "extends": "react-app"
  }

就是这样! 您可以通过编辑 .eslintrc 文件来覆盖 eslint-config-react-app 中的设置。 在 ESLint 网站上了解有关配置 ESLint 的更多信息。

Accessibility Checks

eslint-plugin-jsx-a11y 插件的以下规则被激活:

如果你想启用甚至更多可访问性规则,您可以在项目的根目录中使用以下内容创建一个 .eslintrc 文件:

  {
    "extends": ["react-app", "plugin:jsx-a11y/recommended"],
    "plugins": ["jsx-a11y"]
  }

但是,如果您使用的是 Create React App 并且没有弹出,任何额外的规则只会显示在 IDE 集成,但不在浏览器或终端中。

eslint-config-react-app

This package includes the shareable ESLint configuration used by Create React App.
Please refer to its documentation:

Usage in Create React App Projects

The easiest way to use this configuration is with Create React App, which includes it by default.

You don’t need to install it separately in Create React App projects.

Usage Outside of Create React App

If you want to use this ESLint configuration in a project not built with Create React App, you can install it with following steps.

First, install this package, ESLint and the necessary plugins.

  npm install --save-dev eslint-config-react-app babel-eslint@^7.2.3 eslint@^4.1.1 eslint-plugin-flowtype@^2.34.1 eslint-plugin-import@^2.6.0 eslint-plugin-jsx-a11y@^5.1.1 eslint-plugin-react@^7.1.0

Then create a file named .eslintrc with following contents in the root folder of your project:

  {
    "extends": "react-app"
  }

That's it! You can override the settings from eslint-config-react-app by editing the .eslintrc file. Learn more about configuring ESLint on the ESLint website.

Accessibility Checks

The following rules from the eslint-plugin-jsx-a11y plugin are activated:

If you want to enable even more accessibility rules, you can create an .eslintrc file in the root of your project with this content:

  {
    "extends": ["react-app", "plugin:jsx-a11y/recommended"],
    "plugins": ["jsx-a11y"]
  }

However, if you are using Create React App and have not ejected, any additional rules will only be displayed in the IDE integrations, but not in the browser or the terminal.

    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文