Considered a debugging tool ?
I see an argument that you could make, but I probably wouldn’t call it that.
1 Like
I guess it depends on your definition of debugging. It can be used for debugging in the sense that it will catch errors. A linter generally does static analysis, it will parse the code, look at the strings, and do some rule checking.
Debugging to me is more about live code inspection at the time of execution.
2 Likes