Eric Sunshine | 950079b | 2018-07-11 02:46:42 -0400 | [diff] [blame] | 1 | ( |
2 | foo && | ||||
3 | # LINT: ")" in Bash array assignment not misinterpreted as subshell-closing ")" | ||||
4 | bar=(gumbo stumbo wumbo) && | ||||
5 | baz | ||||
6 | ) && | ||||
7 | ( | ||||
8 | foo && | ||||
9 | # LINT: Bash array length operator not misinterpreted as comment | ||||
10 | bar=${#bar[@]} && | ||||
11 | baz | ||||
12 | ) |