Advertisement
Guest User

Untitled

a guest
Sep 13th, 2019
187
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. {
  2. // Prevents VS Code from formatting JavaScript with the default linter
  3. "javascript.format.enable": false,
  4.  
  5. // Prevents VS Code linting JavaScript with the default linter
  6. "javascript.validate.enable": false,
  7.  
  8. // Lints with Standard JS
  9. "standard.enable": true,
  10.  
  11. // Format files with Standard whenever you save the file
  12. "standard.autoFixOnSave": true,
  13.  
  14. // Files to validate with Standard JS
  15. "standard.validate": [
  16. "javascript",
  17. "javascriptreact"
  18. ]
  19. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement