代码质量检查


安装

  • 命令行安装 nowa install eslint

  • 工具安装 设置 -> 插件设置 -> 选择 nowa-eslint 安装

使用

nowa-eslint 只能作用于 nowa 项目。

  • 使用终端进入项目目录下,直接输入 nowa eslint
  1. $ nowa eslint --help
  2. EG
  3. // default lint directory is ./src
  4. $ nowa eslint
  5. // lint index.js
  6. $ nowa eslint index.js
  7. //lint index.js and directory ./src/
  8. $ nowa eslint --files index.js,./src/
  9. //lint with --fix
  10. $ nowa eslint --files index.js --fix
  • 使用工具的命令集,添加 nowa eslint 命令代码质量检查 - 图1