Created SC1051 (markdown)

koalaman
2017-07-08 17:18:31 -07:00
parent bfa4df0dfe
commit 479e81a3f3

22
SC1051.md Normal file

@@ -0,0 +1,22 @@
## Don't put semicolons directly after 'then'.
### Problematic code:
```sh
if true; then; echo "Hi"; fi
```
### Correct code:
```sh
if true; then echo "Hi"; fi
```
### Rationale:
`then` keywords should not be followed by semicolons. It's not valid shell syntax.
You can follow them directly with a line break or another command.
### Exceptions:
None