Skip to content

Commit

Permalink
fix: marketplace metadata (#18)
Browse files Browse the repository at this point in the history
  • Loading branch information
ssbarnea authored Feb 19, 2021
1 parent 87d4cfe commit 5d29bd5
Show file tree
Hide file tree
Showing 9 changed files with 3,889 additions and 8,400 deletions.
3 changes: 3 additions & 0 deletions .commitlintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"extends": ["@commitlint/config-conventional"]
}
5 changes: 5 additions & 0 deletions .devcontainer/devcontainer.json
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"
}
1 change: 0 additions & 1 deletion .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
# Global Owners
* @ssbarnea

23 changes: 23 additions & 0 deletions .pre-commit-config.yaml
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]
6 changes: 1 addition & 5 deletions CHANGELOG.md
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
16 changes: 6 additions & 10 deletions README.md
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.
2 changes: 1 addition & 1 deletion build/node-extension.webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,4 @@ const config = {
]
}
};
module.exports = config;
module.exports = config;
Loading

0 comments on commit 5d29bd5

Please sign in to comment.