-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdevcontainer-feature.json
More file actions
29 lines (29 loc) · 1003 Bytes
/
devcontainer-feature.json
File metadata and controls
29 lines (29 loc) · 1003 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"id": "ansible-lint",
"version": "2.0.0",
"name": "Ansible Lint (via pipx)",
"documentationURL": "http://github.com/hspaans/devcontainer-features/tree/master/src/ansible-lint",
"licenseURL": "http://github.com/hspaans/devcontainer-features/tree/master/LICENSE",
"description": "ansible-lint checks playbooks for practices and behavior that could potentially be improved.",
"options": {
"version": {
"default": "latest",
"description": "Select the version to install.",
"proposals": [
"latest"
],
"type": "string"
},
"plugins": {
"default": "",
"description": "A space delimitered list of ansible-lint plugins (will be injected into the ansible-lint pipx env). see proposals for examples",
"proposals": [],
"type": "string"
}
},
"installsAfter": [
"ghcr.io/devcontainers-extra/features/pipx-package",
"ghcr.io/devcontainers/features/python",
"ghcr.io/devcontainers-extra/features/ansible"
]
}