Skip to content

Instantly share code, notes, and snippets.

@swayson
Created March 14, 2015 17:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save swayson/8c9a637f38e83b35e41c to your computer and use it in GitHub Desktop.
Save swayson/8c9a637f38e83b35e41c to your computer and use it in GitHub Desktop.
Sublime Text 3 Project configuration for Anaconda and alike
// (Project -> Edit Project)
{
"build_systems":
[
{
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "python -u \"$file\""
}
],
"folders":
[
{
"follow_symlinks": true,
"path": "."
}
],
"settings":
{
"anaconda_linting": true,
"anaconda_linting_behaviour": "always",
"pep257": false,
"python_interpreter": "~/.virtualenvs/anaconda/bin/python",
"test_command": "python -m unittest discover",
"use_pylint": false,
"validate_imports": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment