Eric Sunshine | 5238710 | 2018-07-11 02:46:35 -0400 | [diff] [blame] | 1 | ( |
2 | foo && | ||||
3 | # LINT: closing ")" of $((...)) not misinterpreted as subshell-closing ")" | ||||
4 | bar=$((42 + 1)) && | ||||
5 | baz | ||||
6 | ) && | ||||
7 | ( | ||||
8 | # LINT: missing "&&" on $((...)) | ||||
9 | bar=$((42 + 1)) | ||||
10 | baz | ||||
11 | ) |