Skip to content

Commit

Permalink
Merge pull request #4462 from Simon-He95/master
Browse files Browse the repository at this point in the history
chore: add lint cache
  • Loading branch information
tugcekucukoglu authored Sep 19, 2023
2 parents 5723ed1 + ed62be4 commit d7b2d7d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ coverage
dist
.DS_Store
.vscode
.eslintcache
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@
"build:package": "NODE_ENV=production rollup -c && node build-meta && node api-generator/build-api && gulp build-styles",
"build:check": "npm run format:check && npm run security:check",
"security:check": "npm audit --production --audit-level high",
"format": "prettier --write \"**/*.{js,vue,d.ts}\"",
"format": "prettier --write \"**/*.{js,vue,d.ts}\" --cache",
"format:check": "prettier --check \"**/*.{js,vue,d.ts}\"",
"test:unit": "vitest run",
"test:unit:watch": "vitest watch",
"test:coverage": "vitest run --coverage",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore .",
"lint": "eslint --ext \".js,.vue\" --ignore-path .gitignore . --cache",
"lint:fix": "eslint --fix --ext \".js,.vue\" --ignore-path .gitignore .",
"apidoc": "node ./api-generator/build-apidoc.js",
"build:api": "node ./api-generator/build-api.js && npm run apidoc"
Expand Down Expand Up @@ -82,4 +82,4 @@
"nuxt-gtag": "^0.6.2",
"vee-validate": "^4.8.2"
}
}
}

0 comments on commit d7b2d7d

Please sign in to comment.