SublimeLinter.sublime-settings 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. {
  2. "user":
  3. {
  4. "debug": true,
  5. "delay": 0.1,
  6. "error_color": "D02000",
  7. "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
  8. "gutter_theme_excludes":
  9. [
  10. ],
  11. "lint_mode": "background",
  12. "linters":
  13. {
  14. "eslint":
  15. {
  16. "@disable": false,
  17. "args":
  18. [
  19. ],
  20. "excludes":
  21. [
  22. ]
  23. },
  24. "stylelint":
  25. {
  26. "@disable": false,
  27. "args":
  28. [
  29. ],
  30. "excludes":
  31. [
  32. ]
  33. }
  34. },
  35. "mark_style": "squiggly underline",
  36. "no_column_highlights_line": false,
  37. "passive_warnings": false,
  38. "paths":
  39. {
  40. "linux":
  41. [
  42. ],
  43. "osx":
  44. [
  45. "/usr/local/bin",
  46. "~/.rbenv/shims"
  47. ],
  48. "windows":
  49. [
  50. ]
  51. },
  52. "python_paths":
  53. {
  54. "linux":
  55. [
  56. ],
  57. "osx":
  58. [
  59. ],
  60. "windows":
  61. [
  62. ]
  63. },
  64. "rc_search_limit": 3,
  65. "shell_timeout": 10,
  66. "show_errors_on_save": false,
  67. "show_marks_in_minimap": true,
  68. "syntax_map":
  69. {
  70. "html (django)": "html",
  71. "html (rails)": "html",
  72. "html 5": "html",
  73. "php": "html",
  74. "python django": "python"
  75. },
  76. "warning_color": "DDB700",
  77. "wrap_find": true
  78. }
  79. }