Created
March 2, 2016 06:49
-
-
Save DKunin/d74a03ec69b22086546a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| // Simply using `node` without specifying a path sometimes doesn't work :( | |
| // https://github.com/victorporof/Sublime-HTMLPrettify#oh-noez-command-not-found | |
| // http://nodejs.org/#download | |
| "node_path": { | |
| "windows": "node.exe", | |
| "linux": "/usr/bin/nodejs", | |
| "osx": "/Users/dikunin/.nvm/versions/node/v0.12.7/bin/node" | |
| }, | |
| "jscs_path": { | |
| "windows": "%APPDATA%/npm/node_modules/jscs/bin/jscs", | |
| "linux": "/usr/bin/jscs", | |
| "osx": "/Users/dikunin/.nvm/versions/node/v0.12.7/bin/jscs" | |
| }, | |
| // Specify this path to a JSCS config file to override the default behavior. | |
| // Passed to JSCS as --config. Read more here: | |
| // http://jscs.info/overview.html#-config- | |
| "config_path": "", | |
| // Automatically format when a file is saved. | |
| "format_on_save": false | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "user": { | |
| "debug": true, | |
| "delay": 0.25, | |
| "error_color": "D02000", | |
| "gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme", | |
| "gutter_theme_excludes": [], | |
| "lint_mode": "load/save", | |
| "linters": { | |
| "eslint": { | |
| "@disable": false, | |
| "args": [], | |
| "excludes": [] | |
| }, | |
| "jscs": { | |
| "@disable": false, | |
| "args": [], | |
| "excludes": [] | |
| } | |
| }, | |
| "mark_style": "fill", | |
| "no_column_highlights_line": false, | |
| "node_path": { | |
| "osx": "/Users/dikunin/.nvm/versions/node/v0.12.7/bin/node" | |
| }, | |
| "passive_warnings": false, | |
| "paths": { | |
| "linux": [], | |
| "osx": [ | |
| "/Users/dikunin/.nvm/versions/node/v0.12.7/bin/node" | |
| ], | |
| "windows": [] | |
| }, | |
| "python_paths": { | |
| "linux": [], | |
| "osx": [], | |
| "windows": [] | |
| }, | |
| "rc_search_limit": 3, | |
| "shell_timeout": 10, | |
| "show_errors_on_save": false, | |
| "show_marks_in_minimap": true, | |
| "syntax_map": { | |
| "html (django)": "html", | |
| "html (rails)": "html", | |
| "html 5": "html", | |
| "javascript (babel)": "javascript", | |
| "php": "html", | |
| "python django": "python" | |
| }, | |
| "warning_color": "DDB700", | |
| "wrap_find": true | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment