godlint-cli 0.2.0

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