coc-settings.json 565 B

12345678910111213141516171819202122232425
  1. {
  2. "diagnostic-languageserver.filetypes": {
  3. "sh": "shellcheck"
  4. },
  5. "diagnostic-languageserver.formatFiletypes": {
  6. "sh": "shfmt",
  7. "python": "black"
  8. },
  9. "python.linting.pylintEnabled" : true,
  10. "languageserver": {
  11. "ccls": {
  12. "command": "ccls",
  13. "filetypes": ["c", "cpp", "cuda", "objc", "objcpp"],
  14. "rootPatterns": [".ccls-root", "compile_commands.json"],
  15. "initializationOptions": {
  16. "cache": {
  17. "directory": "/tmp/ccls-cache"
  18. },
  19. "client": {
  20. "snippetSupport": true
  21. }
  22. }
  23. }
  24. }
  25. }