forked from c0fec0de/anytree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
anytree.sublime-project
28 lines (28 loc) · 984 Bytes
/
anytree.sublime-project
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"tab_size": 4,
"translate_tabs_to_spaces": true,
"use_tab_stops": false,
"trim_trailing_white_space_on_save": true,
"rulers": [79],
"ensure_newline_at_eof_on_save": true,
},
"build_systems":
[
{
"name": "Anytree All --with-doctest",
"shell_cmd": "(cd $project_path && nosetests --with-doctest); (cd $project_path/docs && make html); (cd $project_path/ && flake8 anytree); (cd $project_path && pep257 anytree --ignore='D100,D101,D105,D211'); (cd $project_path && python -m doctest README.rst docs/*.rst docs/*/*.rst)"
},
{
"name": "Anytree All",
"shell_cmd": "(cd $project_path && nosetests); (cd $project_path/docs && make html); (cd $project_path/ && flake8 anytree); (cd $project_path && pep257 anytree --ignore='D100,D101,D105,D211')"
}
]
}