git/t/chainlint/pipe.test

test_expect_success 'pipe' '
(
# LINT: no "&&" needed on line ending with "|"
	foo |
	bar |
	baz &&

# LINT: final line of pipe sequence ("cow") lacking "&&"
	fish |
	cow

	sunder
)
'