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