vitabaks / postgresql_cluster

PostgreSQL High-Availability Cluster (based on Patroni). Automating with Ansible.
https://postgresql-cluster.org
MIT License
1.69k stars 411 forks source link

Cleanup of ansible-lint.yml file #376

Closed ThomasSanson closed 1 year ago

ThomasSanson commented 1 year ago

This pull request includes several changes aimed at cleaning up and improving the readability of the ansible-lint.yml file:

  1. Removal of the trailing-spaces rule from skip_list. This rule was removed in order to enforce the rule and ensure that there are no trailing spaces in the YAML files.

  2. Removal of the schema[tasks] rule from skip_list. This rule is no longer necessary and thus has been removed.

  3. Removal of role-name[path] and run-once[task] items from skip_list. These items are no longer needed. The role-name[path] item was removed because it is redundant with the role-name item. The run-once[task] item was removed because it is not used in the project.

  4. Removal of commented out lines. These lines were not providing any value and were just cluttering the file.

All these changes are aimed at improving the readability and efficiency of the ansible-lint.yml file.