1.0.1 • Published 1 year ago

eslint-config-longing v1.0.1

Weekly downloads
-
License
ISC
Repository
-
Last release
1 year ago

eslint-config-longing

自定义 eslint 配置

安装

不包含 eslint,需要自行安装。

npm install eslint@8.57.0  eslint-config-longing -D

使用

  • 配置文件

在项目根目录下增加 .eslintrc.js 文件,添加如下内容:

module.exports = {
  root: true,
  extends: ["eslint-config-longing"],
  rules: {}
};
  • 忽略文件

可以忽略项目中无需检测的文件,在项目根目录新增 .eslintignore 文件,添加如下内容:

# .eslintignore
node_modules
public
dist

编辑器支持

  • vscode,安装 Prettier 插件即可。

文档

Eslint文档