LotteryChecker/LotteryChecker.sublime-project

29 lines
546 B
Plaintext
Raw Normal View History

2022-12-03 05:05:02 +00:00
{
"build_systems":
[
{
"file_regex": "^[ ]*File \"(...*?)\", line ([0-9]*)",
"name": "Anaconda Python Builder",
"selector": "source.python",
"shell_cmd": "./venv/bin/python -u \"$file\""
}
],
"folders":
[
{
"follow_symlinks": true,
"path": "."
}
],
"settings":
{
"anaconda_linting": true,
"anaconda_linting_behaviour": "always",
"pep257": false,
"python_interpreter": "./venv/bin/python",
"test_command": "./venv/bin/python -m unittest discover",
"use_pylint": false,
"validate_imports": true
}
}