Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
datagnss committed Oct 24, 2024
2 parents f8eea9d + 93ed4d6 commit cf22861
Show file tree
Hide file tree
Showing 3 changed files with 182 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{
"recommendations": [
"streetsidesoftware.code-spell-checker",
"lextudio.restructuredtext",
"shuworks.vscode-table-formatter",
"znck.grammarly"
]
}
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,
}
}
153 changes: 153 additions & 0 deletions .vscode/tasks.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,153 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "ArduPilot Build Wiki (All)",
"type": "shell",
"command": "./update.py",
"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 cf22861

Please sign in to comment.