godlint-cli 0.5.0

Command-line interface for Godlint.
1
2
3
4
5
6
7
8
9
10
fn nested(x: u32) -> u32 {
    if x > 0 {
        if x > 1 {
            if x > 2 {
                return 1;
            }
        }
    }
    0
}