settings.json 822 B

12345678910111213141516171819202122232425262728293031
  1. // Place your settings in this file to overwrite default and user settings.
  2. {
  3. // Unofficially, QMK uses spaces for indentation
  4. "editor.insertSpaces": true,
  5. // Configure glob patterns for excluding files and folders.
  6. "files.exclude": {
  7. "**/.build": true,
  8. "**/*.hex": true,
  9. "**/*.bin": true,
  10. "**/*.uf2": true
  11. },
  12. "files.associations": {
  13. "*.h": "c",
  14. "*.c": "c",
  15. "*.inc": "c",
  16. "*.cpp": "cpp",
  17. "*.hpp": "cpp",
  18. "xstddef": "c",
  19. "type_traits": "c",
  20. "utility": "c",
  21. "ranges": "c"
  22. },
  23. "[markdown]": {
  24. "editor.trimAutoWhitespace": false,
  25. "files.trimTrailingWhitespace": false
  26. },
  27. "python.formatting.provider": "yapf",
  28. "[json]": {
  29. "editor.formatOnSave": false
  30. }
  31. }