1(
2# LINT: 'while, 'do', 'done' do not need "&&"
3while true
4do
5# LINT: missing "&&" on 'echo'
6echo foo
7# LINT: last statement of while does not need "&&"
8cat <<-\EOF
9bar
10EOF
11# LINT: missing "&&" on 'done'
12done
1314
# LINT: 'do' on same line as 'while'
15while true; do
16echo foo &&
17cat bar
18done
19)