1
0

SublimeLinter.sublime-settings 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. {
  2. "user": {
  3. "debug": false,
  4. "delay": 0.25,
  5. "error_color": "D02000",
  6. "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
  7. "gutter_theme_excludes": [],
  8. "lint_mode": "background",
  9. "linters": {
  10. "jshint": {
  11. "@disable": false,
  12. "args": [],
  13. "excludes": []
  14. },
  15. "jsxhint": {
  16. "@disable": false,
  17. "args": [],
  18. "excludes": []
  19. }
  20. },
  21. "mark_style": "stippled underline",
  22. "no_column_highlights_line": false,
  23. "paths": {
  24. "linux": [],
  25. "osx": [
  26. "/usr/local/bin",
  27. "~/.rbenv/shims"
  28. ],
  29. "windows": []
  30. },
  31. "python_paths": {
  32. "linux": [],
  33. "osx": [],
  34. "windows": []
  35. },
  36. "rc_search_limit": 3,
  37. "shell_timeout": 10,
  38. "show_errors_on_save": false,
  39. "show_marks_in_minimap": true,
  40. "syntax_map": {
  41. "html (django)": "html",
  42. "html (rails)": "html",
  43. "html 5": "html",
  44. "php": "html",
  45. "python django": "python"
  46. },
  47. "warning_color": "DDB700",
  48. "wrap_find": true
  49. }
  50. }