- Revert the version pin from #7706. - Override the YAML linter config to be more forgiving. - Update YAML lint warnings in a number of files. The choice of which lints to fix and which to override was ad hoc: I fixed the ones that were mainly whitespace oriented, and suppressed the ones that were document-structure related. Fixes #7707.pull/7712/head
@ -1,16 +1,16 @@ | |||||
pullRequestOpened: | | pullRequestOpened: | | ||||
:wave: Thanks for creating a PR! | |||||
:wave: Thanks for creating a PR! | |||||
Before we can merge this PR, please make sure that all the following items have been | |||||
Before we can merge this PR, please make sure that all the following items have been | |||||
checked off. If any of the checklist items are not applicable, please leave them but | checked off. If any of the checklist items are not applicable, please leave them but | ||||
write a little note why. | |||||
write a little note why. | |||||
- [ ] Wrote tests | |||||
- [ ] Updated CHANGELOG_PENDING.md | |||||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | |||||
- [ ] Updated relevant documentation (`docs/`) and code comments | |||||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | |||||
- [ ] Applied Appropriate Labels | |||||
- [ ] Wrote tests | |||||
- [ ] Updated CHANGELOG_PENDING.md | |||||
- [ ] Linked to Github issue with discussion and accepted design OR link to spec that describes this work. | |||||
- [ ] Updated relevant documentation (`docs/`) and code comments | |||||
- [ ] Re-reviewed `Files changed` in the Github PR explorer | |||||
- [ ] Applied Appropriate Labels | |||||
Thank you for your contribution to Tendermint! :rocket: | |||||
Thank you for your contribution to Tendermint! :rocket: |
@ -1,8 +0,0 @@ | |||||
default: true, | |||||
MD007: { "indent": 4 } | |||||
MD013: false | |||||
MD024: { siblings_only: true } | |||||
MD025: false | |||||
MD033: { no-inline-html: false } | |||||
no-hard-tabs: false | |||||
whitespace: false |
@ -0,0 +1,8 @@ | |||||
default: true, | |||||
MD007: {"indent": 4} | |||||
MD013: false | |||||
MD024: {siblings_only: true} | |||||
MD025: false | |||||
MD033: {no-inline-html: false} | |||||
no-hard-tabs: false | |||||
whitespace: false |
@ -0,0 +1,9 @@ | |||||
--- | |||||
# Default rules for YAML linting from super-linter. | |||||
# See: See https://yamllint.readthedocs.io/en/stable/rules.html | |||||
extends: default | |||||
rules: | |||||
document-end: disable | |||||
document-start: disable | |||||
line-length: disable | |||||
truthy: disable |
@ -1,5 +1,3 @@ | |||||
--- | --- | ||||
- name: reload services | - name: reload services | ||||
systemd: "name={{service}} daemon_reload=yes enabled=yes" | systemd: "name={{service}} daemon_reload=yes enabled=yes" | ||||
@ -1,8 +1,6 @@ | |||||
--- | --- | ||||
- name: reload daemon | - name: reload daemon | ||||
command: "systemctl daemon-reload" | command: "systemctl daemon-reload" | ||||
- name: restart journalbeat | - name: restart journalbeat | ||||
service: name=journalbeat state=restarted | service: name=journalbeat state=restarted | ||||
@ -1,5 +1,3 @@ | |||||
--- | --- | ||||
- name: start service | - name: start service | ||||
service: "name={{service}} state=started" | service: "name={{service}} state=started" | ||||
@ -1,5 +1,3 @@ | |||||
--- | --- | ||||
- name: stop service | - name: stop service | ||||
service: "name={{service}} state=stopped" | service: "name={{service}} state=stopped" | ||||
@ -1,4 +1,3 @@ | |||||
- command: "{{service}} unsafe_reset_all {{ (service != 'tendermint') | ternary('node','') }} --home /home/{{service}}/.{{service}}" | - command: "{{service}} unsafe_reset_all {{ (service != 'tendermint') | ternary('node','') }} --home /home/{{service}}/.{{service}}" | ||||
become_user: "{{service}}" | become_user: "{{service}}" | ||||
become: yes | become: yes | ||||