Skip to content

Instantly share code, notes, and snippets.

@silverbux
Created August 3, 2015 00:16
Show Gist options
  • Save silverbux/1b869e5c72480d914d97 to your computer and use it in GitHub Desktop.
Save silverbux/1b869e5c72480d914d97 to your computer and use it in GitHub Desktop.
{
  // 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": "/opt/boxen/nodenv/shims/node"
  },

  "jscs_path": {
    "windows": "%APPDATA%/npm/node_modules/jscs/bin/jscs",
    "linux": "/usr/bin/jscs",
    "osx": "/opt/boxen/nodenv/versions/v0.12.5/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": "/Users/alexquiambao/projects/.jscsrc",

  // Automatically format when a file is saved.
  "format_on_save": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment