Something akin to C's splint, Haskell's HLint, Perl's B::Lint, etc.?

link|improve this question

1  
When I do some searches, I see something called SCL or SCL Lint, which I'm not sure if that's still extant, and the following: cs.cmu.edu/afs/cs/project/ai-repository/ai/lang/lisp/code/tools/… – Jared Farrish Aug 1 '11 at 0:30
That's really cool, but how do we use it? Is it like B::Lint, i.e. just load it before loading the code to check? – mcandre Aug 1 '11 at 0:39
blush I don't know, I just did some web searches... :D That's a different question. – Jared Farrish Aug 1 '11 at 0:40
1  
I'm porting this to modern CL, Quicklisp, etc. How can I access si:definition-type-name in the different CL implementations? Ditto for compiler:style-checker? – mcandre Aug 1 '11 at 1:18
I don't have a clue as far as C-Lisp, seriously. I couldn't do a hello world. If you have a specific question that you need an answer to, I suggest raising a question that answers that question, and/or trying it yourself and asking questions when you meet a dead-end. I'm sorry if my response made you think I could answer the question, but that's not a reality in this case. Please, create a new question for your inquiries; I was focusing on C-Lisp Lint parsers. Also note, in some circumstances you're better off deleting a question than editing it. – Jared Farrish Aug 1 '11 at 1:23
show 1 more comment
feedback

3 Answers

No, there is nothing like that for Common Lisp.

link|improve this answer
10  
Well, there's the SBCL compiler that's pretty good at giving all sorts of warnings I would expect from a linter for (say) C. – Vatine Aug 1 '11 at 15:15
There's XREF (cs.cmu.edu/Groups/AI/lang/lisp/code/tools/xref/0.html), but the link to the actual code gives a permission error. – mcandre Aug 1 '11 at 19:02
XREF is not like Lint. – Xach Aug 3 '11 at 0:11
feedback

There is a static debugger for PLT Scheme, called "MrSpidey", and "bugloo" if you are using the "Bigloo" Scheme compiler, but that is all I could find. see this Stack Overflow question about static analyzers for scheme.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.