diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000000..d4e900e925 --- /dev/null +++ b/.vscode/settings.json @@ -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, + } +} diff --git a/.vscode/tasks.json b/.vscode/tasks.json index 30708a7ea7..f3f9fb7ba8 100644 --- a/.vscode/tasks.json +++ b/.vscode/tasks.json @@ -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 + } + }, ] }