Files
ansible_role_package/tasks/pkgs/editorconfig.yml
2025-03-03 12:04:09 -07:00

14 lines
346 B
YAML

# vim: set filetype=yaml.ansible :
---
- name: Add editorconfig
when:
- editorconfig_configured is undefined
block:
- name: Append to pkgs
ansible.builtin.set_fact:
pkg_sys: "{{ pkg_sys + ['editorconfig'] }}"
- name: Set editorconfig_configured
ansible.builtin.set_fact:
editorconfig_configured: true