Applied ansible-lint fixes

This commit is contained in:
Sonny Bakker 2026-01-16 10:20:25 +01:00
parent 24b567fc57
commit 347104529f
20 changed files with 239 additions and 220 deletions

View file

@ -1,6 +1,7 @@
---
- name: Install language servers
become: true
community.general.pacman:
name: '{{ item }}'
name: "{{ item }}"
state: present
loop: '{{ language_servers | map(attribute="package") | list }}'