Fix soundness script (#1676)
Motivation:
The formatting script expects the '-l' flag to run the lint checker
without running the formatter. The soundness script pass 'lint' which
was ignored, so the script ran the formatter instead of the lint checker
which means the formatting checker will never fail in CI.
Modifications:
- Fix the incorrect flag
- Fix a formatting issue which crept in
Result:
CI checks formatting correctly...