Skip to content

Instantly share code, notes, and snippets.

@qmmr
Last active August 29, 2015 14:15
Show Gist options
  • Save qmmr/f7756117ebff1677cd73 to your computer and use it in GitHub Desktop.
Save qmmr/f7756117ebff1677cd73 to your computer and use it in GitHub Desktop.
SublimeLinter.sublime-settings
# load nvm
if [[ -f ~/.nvm/nvm.sh ]]; then
. ~/.nvm/nvm.sh
nvm use v0.10
else
echo "You're missing .nvm.sh!"
fi
export PATH=/usr/local/bin:/usr/local/sbin:$HOME/.rvm/bin:$PATH
{
"default": {
"debug": false,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Default/Default.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": false,
"paths": {
"linux": [],
"osx": [],
"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": {
"python django": "python",
"html 5": "html",
"html (django)": "html",
"html (rails)": "html",
"php": "html"
},
"warning_color": "DDB700",
"wrap_find": true
}
}
{
"user": {
"debug": true,
"delay": 0.25,
"error_color": "D02000",
"gutter_theme": "Packages/SublimeLinter/gutter-themes/Blueberry/round/Blueberry - round.gutter-theme",
"gutter_theme_excludes": [],
"lint_mode": "background",
"linters": {
"jscs": {
"@disable": false,
"args": [],
"excludes": []
},
"json": {
"@disable": false,
"args": [],
"excludes": [],
"strict": true
},
"jsxhint": {
"@disable": false,
"args": [],
"excludes": []
},
"scss": {
"@disable": false,
"args": [],
"exclude-linter": "",
"excludes": [],
"include-linter": ""
}
},
"mark_style": "outline",
"no_column_highlights_line": false,
"passive_warnings": false,
"paths": {
"linux": [],
"osx": [
"/Users/qmmr/.nvm/v0.10.36/bin/jsxhint",
"/Users/qmmr/.nvm/v0.10.36/bin/jscs"
],
"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",
"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