crud-vuetify-structured-template icon indicating copy to clipboard operation
crud-vuetify-structured-template copied to clipboard

Run linter before git push

Open huogerac opened this issue 3 years ago • 0 comments

Check if the lint-staged works:

"devDependencies": {
    ...
    "lint-staged": "^8.1.5",
  },
  "gitHooks": {
    "pre-commit": "lint-staged"
  },
  "lint-staged": {
    "*.{js,vue}": [
      "vue-cli-service lint",
      "git add"
    ]
  }

huogerac avatar Oct 13 '21 03:10 huogerac