Jérôme Alet
Jérôme Alet
Ansible vaults are YAML files which are not parsable because they are encrypted with a password. An example Ansible vault look like this : ``` $ANSIBLE_VAULT;1.1;AES256 1643039736532396535663733313030306436333431313465653962333739613331 ... ``` When...
I'm working on a simple tool designed to parse yamllint's output and automatically fix a subset of encountered problems, currently only 11 warning or error conditions are automatically fixed. It...
As can be seen below yamllint should ignore non-YAML (to the best of its knowledge) files, or at least fail gracefully, in all cases, but currently it only works when...
- [ ] Check that the software works under MS Windows. - [ ] Check that --colorsummary works under MS Windows. - [ ] See what happens if you launch...
# 1️⃣ Description `yamlfixer` passes YAML files through `yamllint` by sending their content to `yamllint`'s standard input. Due to this behavior, `yamllint` doesn't know the input files' names, and so...
- [x] Go to https://yaml.org/ and then click on `Edit This Website`, this will bring you to https://github.com/yaml/www.yaml.org/ - [x] From there, clone the project, insert a link to [yamlfixer](https://github.com/opt-nc/yamlfixer)...
# 📜 Read (and accept) this before - [x] I am respectful : this is free software and efforts are made on free time, with 💙 - [x] I have...
# ❔ Context Neither GitHub Actions, nor it seems Docker, provide a tty to commands, making yamlfixer unnecessarily read input from stdin. # 🎯 Target Check if the implemented workaround...