Advertisement
Guest User

Untitled

a guest
Feb 19th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. __package.json
  2.  
  3. "gitHooks": {
  4. "pre-commit": "lint-staged"
  5. },
  6. "lint-staged": {
  7. "*.ts": [
  8. "vue-cli-service lint",
  9. "prettier --write",
  10. "git add"
  11. ],
  12. "*.vue": [
  13. "vue-cli-service lint",
  14. "prettier --write",
  15. "git add"
  16. ]
  17. },
  18. "prettier": {
  19. "tabWidth": 4,
  20. "useTabs": true,
  21. "vueIndentScriptAndStyle": true
  22. }
  23.  
  24.  
  25.  
  26.  
  27.  
  28. __tslint.json
  29. "extends": ["tslint:latest", "tslint-config-prettier", "tslint-plugin-prettier"],
  30.  
  31. "prettier": true,
  32. "no-console": false
  33.  
  34.  
  35.  
  36. __editorconfig
  37.  
  38.  
  39. indent_style = tab
  40. tab_width = 4
  41.  
  42.  
  43.  
  44.  
  45. DONE:
  46. 3dscan
  47. getting started
  48. webcompoennety (nie maja tslinta)
  49. recommendations
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement