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

semicolon.test « chainlint « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 67e1192c50ab0c47a74152a4fd59a6d70797b717 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(
# LINT: missing internal "&&" and ending "&&"
	cat foo ; echo bar
# LINT: final statement before ")" only missing internal "&&"
	cat foo ; echo bar
) &&
(
# LINT: missing internal "&&"
	cat foo ; echo bar &&
	cat foo ; echo bar
) &&
(
# LINT: not fooled by semicolon in string
	echo "foo; bar" &&
	cat foo; echo bar
) &&
(
# LINT: semicolon unnecessary but legitimate
	foo;
) &&
(cd foo &&
	for i in a b c; do
# LINT: semicolon unnecessary but legitimate
		echo;
	done)