Welcome to mirror list, hosted at ThFree Co, Russian Federation.

negated-one-liner.test « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c9598e915307fd05568fa626aae83542b244097a (plain)
1
2
3
4
5
6
7
# LINT: top-level one-liner subshell
! (foo && bar) &&
! (foo && bar) >baz &&

# LINT: top-level one-liner subshell missing internal "&&"
! (foo; bar) &&
! (foo; bar) >baz