Skip to content

Commit

Permalink
.vscode: Add tasks for each wiki and create a settings file
Browse files Browse the repository at this point in the history
  • Loading branch information
TunaLobster authored and Hwurzburg committed Jan 9, 2023
1 parent 423998b commit cfbd99a
Show file tree
Hide file tree
Showing 2 changed files with 161 additions and 2 deletions.
21 changes: 21 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"esbonio.sphinx.confDir": "${workspaceFolder}/copter/source",
"grammarly.config.documentDialect": "american",
"grammarly.files.include": [
"**/readme.md",
"**/README.md",
"**/*.txt",
"**/*.rst"
],
"files.exclude": {
"antennatracker/**/common-*": true,
"blimp/**/common-*": true,
"copter/**/common-*": true,
"dev/**/common-*": true,
"mavproxy/**/common-*": true,
"plane/**/common-*": true,
"planner/**/common-*": true,
"planner2/**/common-*": true,
"rover/**/common-*": true,
}
}
142 changes: 140 additions & 2 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,149 @@
"label": "ArduPilot Build Wiki (All)",
"type": "shell",
"command": "./update.py",
"args": ["--parallel", "-1"],
"args": [
"--parallel",
"-1"
],
"group": {
"kind": "build",
"isDefault": true
}
}
},
{
"label": "ArduPilot Build Wiki (AntennaTracker)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"antennatracker"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Blimp)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"blimp"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Copter)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"copter"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Dev)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"dev"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (MAVProxy)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"mavproxy"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Plane)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"plane"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Planner)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"planner"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Planner2)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"planner2"
],
"group": {
"kind": "build",
"isDefault": true
}
},
{
"label": "ArduPilot Build Wiki (Rover)",
"type": "shell",
"command": "./update.py",
"args": [
"--parallel",
"-1",
"--site",
"rover"
],
"group": {
"kind": "build",
"isDefault": true
}
},
]
}

0 comments on commit cfbd99a

Please sign in to comment.