normalize-syntax-rules 0.3.2

Syntax-based linting rules with tree-sitter queries
Documentation
def check(x, y)
  if x > 0
    nil
  end
  if x < 1
    nil
  end
  if x == 2
    nil
  end
  if y >= 3
    nil
  end
  if y != 9
    nil
  end
  MAX_RETRIES = 42
  z = 100
end