Created
March 14, 2015 17:05
-
-
Save swayson/8c9a637f38e83b35e41c to your computer and use it in GitHub Desktop.
Sublime Text 3 Project configuration for Anaconda and alike
This file contains 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
// (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