Created SC2273 (markdown)

Vidar Holen
2020-12-30 19:54:58 -08:00
parent 43313c5118
commit 0ac9124903

36
SC2273.md Normal file

@@ -0,0 +1,36 @@
## Sequence of ===s found. Merge conflict or intended as a commented border?
### Problematic code:
```sh
=======
```
### Correct code:
Either resolve the merge conflict, or use `# =======` for a border
### Rationale:
ShellCheck found a series of `=======`s. If this was supposed to be a border or separator, use a comment.
However, it could also be left behind from a source control merge conflict:
```sh
<<<<<<< HEAD
echo "Goodbye World"
=======
echo "Hello World!"
>>>>>>> mybranch
```
In this case, make sure the merge conflict is correctly resolved, and all the markers removed.
### Exceptions:
None
### Related resources:
* Help by adding links to BashFAQ, StackOverflow, man pages, POSIX, etc!