-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs(apidocs): remove yaml_include package documentation
- Remove yaml_include package API documentation - Delete yaml_include.rst and related module files
- Loading branch information
Showing
13 changed files
with
109 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
{ | ||
// See https://go.microsoft.com/fwlink/?LinkId=733558 | ||
// for the documentation about the tasks.json format | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "build", | ||
"type": "shell", | ||
"command": "${command:python.interpreterPath} -m build", | ||
"problemMatcher": [ | ||
"$python" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "test", | ||
"type": "shell", | ||
"command": "${command:python.interpreterPath} -m unittest", | ||
"problemMatcher": [ | ||
"$python" | ||
], | ||
"group": { | ||
"kind": "test", | ||
"isDefault": true | ||
} | ||
}, | ||
{ | ||
"label": "docs: build", | ||
"type": "shell", | ||
"command": "${command:python.interpreterPath} -m sphinx -j auto -d _build/doctrees . _build/html", | ||
"options": { | ||
"cwd": "${workspaceFolder}/docs" | ||
}, | ||
"problemMatcher": [ | ||
"$python" | ||
] | ||
}, | ||
{ | ||
"label": "docs: serve", | ||
"type": "shell", | ||
"command": "${command:python.interpreterPath} -m http.server -d _build/html", | ||
"options": { | ||
"cwd": "${workspaceFolder}/docs" | ||
}, | ||
"problemMatcher": [ | ||
"$python" | ||
] | ||
}, | ||
{ | ||
"label": "lint", | ||
"type": "shell", | ||
"command": "${command:python.interpreterPath} -m ruff check --fix && ${command:python.interpreterPath} -m ruff format", | ||
"problemMatcher": [ | ||
"$python" | ||
] | ||
}, | ||
{ | ||
"label": "static type check", | ||
"type": "shell", | ||
"command": "${command:python.interpreterPath} -m mypy", | ||
"problemMatcher": [ | ||
"$python" | ||
] | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
* | ||
!.gitignore |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters