Skip to content

Commit

Permalink
ansible: Add yamllint config and fix diagnostics
Browse files Browse the repository at this point in the history
  • Loading branch information
Granddave committed Jan 6, 2023
1 parent 55b366a commit 4a59b09
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 2 deletions.
12 changes: 12 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
extends: default

rules:
line-length:
max: 140
truthy:
allowed-values:
- "yes"
- "no"
- "true"
- "false"
4 changes: 2 additions & 2 deletions setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
vars:
dotfiles_dir: "{{ lookup('env','HOME') }}/.dotfiles"
alacritty_binary_path: "/usr/local/bin/alacritty"
alacritty_version: "0.11.0" # https://github.com/alacritty/alacritty/tags
alacritty_version: "0.11.0" # https://github.com/alacritty/alacritty/tags
apt_packages:
cli:
# Dev tools
Expand Down Expand Up @@ -55,7 +55,7 @@
register: gtk_check
ignore_errors: yes
check_mode: no
changed_when: False
changed_when: false

- name: Set GTK fact
set_fact:
Expand Down

0 comments on commit 4a59b09

Please sign in to comment.