Advertisement
Guest User

Untitled

a guest
Jun 15th, 2019
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.01 KB | None | 0 0
  1. [*.{js,jsx,ts,tsx,vue}]
  2. indent_style = space
  3. indent_size = 2
  4. trim_trailing_whitespace = true
  5. insert_final_newline = true
  6.  
  7. {
  8. "scripts": {
  9. "lint": "vue-cli-service lint",
  10. },
  11. "devDependencies": {
  12. "@vue/cli-plugin-eslint": "^3.8.0",
  13. "@vue/eslint-config-standard": "^4.0.0",
  14. "babel-eslint": "^10.0.1",
  15. "eslint": "^5.16.0",
  16. "eslint-plugin-vue": "^5.0.0",
  17. }
  18. }
  19.  
  20. error: Extra semicolon (semi) at srccomponentsHelloWorld.vue:41:2:
  21. 39 | msg: String
  22. 40 | }
  23. > 41 | };
  24. | ^
  25. 42 | </script>
  26. 43 |
  27. 44 | <!-- Add "scoped" attribute to limit CSS to this component only -->
  28.  
  29. error: Expected indentation of 2 spaces but found 1 tab (indent) at srccomponentsHelloWorld.vue:40:1:
  30. 38 | props: {
  31. 39 | msg: String
  32. > 40 | }
  33. | ^
  34. 41 | };
  35. 42 | </script>
  36. 43 |
  37.  
  38. error: Unexpected tab character (no-tabs) at srccomponentsHelloWorld.vue:40:1:
  39. 38 | props: {
  40. 39 | msg: String
  41. > 40 | }
  42. | ^
  43. 41 | };
  44. 42 | </script>
  45. 43 |
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement