godlint-cli 0.2.0

Command-line interface for Godlint.
1
2
3
4
5
6
7
8
9
10
11
12
try:
    work()
except ValueError:
    pass
try:
    work()
except Exception as error:
    ...
try:
    work()
except Exception:
    recover()