blob: 422d1d8893fe15748ee58f57561a5eae50677d9a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
- name: Fixture for no-tabs rule
hosts: localhost
tasks:
- name: Should not trigger no-tabs rules
ansible.builtin.lineinfile:
path: some.txt
regexp: ^\t$
line: string with \t inside
- name: Foo
ansible.builtin.debug:
msg: "Presence of \t should trigger no-tabs here."
- name: Should not trigger no-tabs rules # noqa fqcn
lineinfile:
path: some.txt
regexp: ^\t$
line: string with \t inside
|