Node.js安装和配置ESLint

美女程序员鼓励师

安装

对于项目目录的本地安装:

$ npm i eslint -D

对于工作系统中的全局安装:

$ npm i eslint -g

1、安装后,可以通过终端中的eslint命令使用 ESLint。

配置

2、最简单的配置方法是设置一个.eslintrc JSON 文件,其中可以描述所有的linting规则。

.eslintrc 的一个示例:

{

  "env": {

    "node": true,

    "browser": true

  },

  "globals": {

 

    "exampleGlobalVariable": true

  },

  "rules": {

    "no-console": 0,

    "space-infix-ops": "error",

    "quotes": ["error", "single", {

      "avoidEscape": true,

      "allowTemplateLiterals": true

    }],

    "space-before-blocks": ["error", "always"],

    "semi": ["error", "never"]

  },

  "plugins": []

}

主要字段:

parse — 指定解析器

parserOptions — 指定解析器选项

env — 指定脚本的运行环境

root — 为 true 时,停止向上查找父级目录中的配置文件

globals — 脚本在执行期间访问的额外的全局变量

rules — 在此处添加您的自定义规则

以上就是Node.js安装和配置ESLint的方法,希望对大家有所帮助。更多js学习指路:js教程

本文操作环境:Windows7系统、nodejs14.16版、Dell G3电脑。

以上是 Node.js安装和配置ESLint 的全部内容, 来源链接: utcz.com/z/545641.html

回到顶部