-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
9 changed files
with
3,889 additions
and
8,400 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"extends": ["@commitlint/config-conventional"] | ||
} |
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,5 @@ | ||
{ | ||
"image": "quay.io/ansible/toolset:main", | ||
"workspaceFolder": "/workspace", | ||
"workspaceMount": "source=remote-workspace,target=/workspace,type=volume" | ||
} |
Validating CODEOWNERS rules …
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 |
---|---|---|
@@ -1,3 +1,2 @@ | ||
# Global Owners | ||
* @ssbarnea | ||
|
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,23 @@ | ||
--- | ||
repos: | ||
- repo: https://github.com/pre-commit/pre-commit-hooks.git | ||
rev: v3.4.0 | ||
hooks: | ||
- id: end-of-file-fixer | ||
- id: trailing-whitespace | ||
exclude: > | ||
(?x)^( | ||
examples/playbooks/(with-skip-tag-id|unicode).yml| | ||
examples/playbooks/example.yml | ||
)$ | ||
- id: mixed-line-ending | ||
- id: check-byte-order-marker | ||
- id: check-executables-have-shebangs | ||
- id: check-merge-conflict | ||
- id: debug-statements | ||
language_version: python3 | ||
- repo: https://github.com/alessandrojcm/commitlint-pre-commit-hook | ||
rev: v2.2.0 | ||
hooks: | ||
- id: commitlint | ||
stages: [commit-msg] |
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 |
---|---|---|
@@ -1,9 +1,5 @@ | ||
# Change Log | ||
|
||
All notable changes to the "vscode-ansible" extension will be documented in this file. | ||
|
||
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file. | ||
|
||
## [Unreleased] | ||
|
||
- Initial release | ||
- Initial release |
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 |
---|---|---|
@@ -1,27 +1,23 @@ | ||
# vscode-ansible README | ||
# Ansible extension for vscode and vscodium | ||
|
||
Ansible extension aims to ease life of Ansible content creators by making | ||
easier to write Ansible playbooks, roles, collections, modules and plugins. | ||
|
||
This extension is at its early stage and at this moment it does only run | ||
ansible-lint and presents its results on file save. | ||
![ansible-lint]([images/gh-social-preview.png](https://github.com/ansible-community/vscode-ansible/raw/master/images/gh-social-preview.png)) | ||
|
||
## Features | ||
|
||
![ansible-lint](images/gh-social-preview.png) | ||
* Display violations identified by [ansible-lint](https://github.com/ansible-community/ansible-lint), ansible own syntax check and | ||
[yamllint](https://github.com/adrienverge/yamllint) inside problems tab. | ||
|
||
## Requirements | ||
|
||
This extension also installs YAML extension. | ||
|
||
## Known Issues | ||
|
||
Calling out known issues can help limit users opening duplicate issues against your extension. | ||
* For the moment you need to install `ansible-lint` yourself | ||
|
||
## Release Notes | ||
|
||
Users appreciate release notes as you update your extension. | ||
|
||
### 0.0.2 | ||
|
||
* Run ansible-lint on save and report problems. | ||
Please check [changelog](https://marketplace.visualstudio.com/items/zbr.vscode-ansible/changelog) page for details regarding each new version. |
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 |
---|---|---|
|
@@ -38,4 +38,4 @@ const config = { | |
] | ||
} | ||
}; | ||
module.exports = config; | ||
module.exports = config; |
Oops, something went wrong.