lint 0.1.3

A versatile linting tool with CLI, MCP, and library interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class my_class
  def initialize
    @value = 10
  end
  
  def set_value(new_value)
    @value = new_value
  end
  
  def get_value
    puts "Value: #{@value}"
    @value
  end
end