File tree Expand file tree Collapse file tree 2 files changed +40
-0
lines changed
Expand file tree Collapse file tree 2 files changed +40
-0
lines changed Original file line number Diff line number Diff line change 88 "vscode" : {
99 "settings" : {},
1010 "extensions" : [" ms-python.python" , " charliermarsh.ruff" , " GitHub.copilot" ]
11+ },
12+ "codespaces" : {
13+ "openFiles" : [
14+ " README.md" ,
15+ " _InstructionSiteUpdates.md"
16+ ]
1117 }
1218 },
1319 "features" : {
Original file line number Diff line number Diff line change 1+ {
2+ // See https://go.microsoft.com/fwlink/?LinkId=733558
3+ // for the documentation about the tasks.json format
4+ "version" : " 2.0.0" ,
5+ "tasks" : [
6+ {
7+ "label" : " html" ,
8+ "type" : " shell" ,
9+ "command" : " pixi run html" ,
10+ "group" : {
11+ "kind" : " build" ,
12+ "isDefault" : false
13+ }
14+ },
15+ {
16+ "label" : " clean" ,
17+ "type" : " shell" ,
18+ "command" : " pixi run clean" ,
19+ "group" : {
20+ "kind" : " build" ,
21+ "isDefault" : false
22+ }
23+ },
24+ {
25+ "label" : " live" ,
26+ "type" : " shell" ,
27+ "command" : " pixi run live" ,
28+ "group" : {
29+ "kind" : " build" ,
30+ "isDefault" : true
31+ }
32+ }
33+ ]
34+ }
You can’t perform that action at this time.
0 commit comments