Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
## Contents

This repository contains following features:

- [ansible-lint](./src/ansible-lint/README.md): Ansible Lint
- [django-upgrade](./src/django-upgrade/README.md): Django-upgrade
- [pyadr](./src/pyadr/README.md): Python ADR
Expand Down
2 changes: 1 addition & 1 deletion src/ansible-lint/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ ansible-lint checks playbooks for practices and behavior that could potentially

```json
"features": {
"ghcr.io/hspaans/devcontainer-features/ansible-lint:1": {}
"ghcr.io/hspaans/devcontainer-features/ansible-lint:2": {}
}
```

Expand Down
6 changes: 3 additions & 3 deletions src/ansible-lint/devcontainer-feature.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"id": "ansible-lint",
"version": "1.0.2",
"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",
Expand All @@ -22,8 +22,8 @@
}
},
"installsAfter": [
"ghcr.io/devcontainers-contrib/features/pipx-package",
"ghcr.io/devcontainers-extra/features/pipx-package",
"ghcr.io/devcontainers/features/python",
"ghcr.io/devcontainers-contrib/features/ansible"
"ghcr.io/devcontainers-extra/features/ansible"
]
}
2 changes: 1 addition & 1 deletion src/ansible-lint/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ ensure_nanolayer nanolayer_location "v0.5.0"
$nanolayer_location \
install \
devcontainer-feature \
"ghcr.io/devcontainers-contrib/features/pipx-package:1.1.7" \
"ghcr.io/devcontainers-extra/features/pipx-package:1.1.9" \
--option package='ansible-lint' --option injections="$PLUGINS" --option version="$VERSION"


Expand Down