光明山

vuePress-theme-reco 山妖    2016 - 2020
光明山

Choose mode

  • dark
  • auto
  • light
首页
Category
  • 例子
  • 移动端
  • nginx
  • 框架
  • 提示
  • vue
  • webpack
  • 小程序
Tag
TimeLine
External
author-avatar

山妖

15

Article

16

Tag

首页
Category
  • 例子
  • 移动端
  • nginx
  • 框架
  • 提示
  • vue
  • webpack
  • 小程序
Tag
TimeLine
External

添加自动eslint

vuePress-theme-reco 山妖    2016 - 2020

添加自动eslint


山妖 2018-11-09 webpackvue-cli

1、添加standard

npm install standard --save-dev

2、添加执行命令

{
  "name": "your-project-name",
  "devDependencies": {
    "standard": "*"
  },
  // 只要在scripts添加以下两句命令
  "scripts": {
    "vy": "standard && node my-tests.js",       
    "fix": "standard --fix"
  }
}

3、执行命令

yarn run fix