Ruby source code analyzer (something like pylint)

后端 未结 7 1965
一整个雨季
一整个雨季 2020-12-04 11:47

Does Ruby have any tools along the lines of pylint for analyzing source code for errors and simple coding standards?

It would be nice if it could be integrated with

7条回答
  •  醉梦人生
    2020-12-04 12:11

    There's also the built-in warnings you can enable with a quick:

    ruby -w
    

    Or setting the global variable $VERBOSE to true at any point.

提交回复
热议问题