plyr.code-workspace 695 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {
  2. "folders": [
  3. {
  4. "path": "."
  5. }
  6. ],
  7. "settings": {
  8. "search.exclude": {
  9. "**/node_modules": true,
  10. "**/dist": true
  11. },
  12. // Linting
  13. "stylelint.enable": true,
  14. "css.validate": false,
  15. "scss.validate": false,
  16. "javascript.validate.enable": false,
  17. // Formatting
  18. "editor.defaultFormatter": "esbenp.prettier-vscode",
  19. "editor.tabSize": 2,
  20. "editor.insertSpaces": true,
  21. "editor.formatOnSave": true,
  22. // Trim on save
  23. "files.trimTrailingWhitespace": true,
  24. // Special file associations
  25. "files.associations": {
  26. ".eslintrc": "jsonc"
  27. },
  28. "editor.codeActionsOnSave": {
  29. "source.fixAll": true
  30. }
  31. }
  32. }