Tagged Questions
lint is a tool to pick fluff from C programs, i.e. it provides many warnings beyond those a typical C compiler would diagnose.
105
votes
7answers
20k views
Is there a static code analyzer [like Lint] for PHP files?
Is there a static code analyzer for PHP files? The binary itself can check for syntax errors, but I'm looking for something that does more, like unused variable assignments, arrays that are assigned ...
55
votes
9answers
15k views
C/C++ Free alternative to Lint?
I'm interested in a free tool that can statically check my C++ code like Lint does.
Any hints?
39
votes
5answers
8k views
VIM + JSLint?
I spend my days in vim, currently writing a lot of JavaScript. I've been trying to find a way to integrate JSLint or something similar into vim to improve my coding. Has anyone managed to do something ...
29
votes
9answers
4k views
Are there any CSS lint tools?
I'm looking for a tool that can scan over a set of HTML pages, and check for bad or out of sync CSS usage. In particular, I want to check the following:
Each CSS rule in the CSS files is used at ...
18
votes
4answers
2k views
One var per function in JavaScript?
I've been using JSLint to make me feel bad about my JavaScript. It is great, by the way. There is one check that I don't quite understand and I'd like your views, please.
From jslint.com:
In ...
18
votes
2answers
8k views
Using JSLint in Notepad++
I have seen other text editors use extensions to allow syntax checkers such as JSLint, is this possible with Notepad++?
14
votes
3answers
284 views
Is there a lint for Common Lisp or Chicken Scheme?
Something akin to C's splint, Haskell's HLint, Perl's B::Lint, etc.?
12
votes
7answers
2k views
Where can I find an actively developed lint tool for Ruby?
Most of the code I write is in Ruby, and every once in a while, I make some typo ( which only gets caught after a while ). This can suck when you have your scripts do some long running tasks, and you ...
12
votes
14answers
4k views
Is JS lint available for offline use?
I'd like to use JSLint but am wary of tools that have access to my unfiltered source-code. Is there an offline version or is there another similar tool that does "lint error checking" for JavaScript ...
11
votes
4answers
935 views
Are there any lint tools for C and C++ that check formatting?
I have a codebase that is touched by many people. While most people make an effort to keep the code nicely formatted (e.g. consistent indentation and use of braces), some don't, and even those that ...
11
votes
2answers
611 views
How would one create a Clojure Lint?
One example of a common Clojure programming error is expecting a lazy expression to be evaluated for side-effects. On the surface it appears checking for unused lazy expressions would be helpful. What ...
11
votes
11answers
605 views
Any Tools to Catch Silly Mistakes in C Code?
I had a nasty typo that wasted my time and my colleague's time, it was something like this:
for (i = 0; i < blah; i++); // <- I had a semi-colon here, that's the bug!
{
// Some awesome logic ...
10
votes
4answers
567 views
10
votes
5answers
5k views
JSLint (CLI): options?
I'm running JSLint's Rhino version from the Ubuntu command line like so:
$ rhino jslint.js myScript.js
While the web interface offers various options, I couldn't figure out how to invoke those via ...
10
votes
6answers
1k views
Lint tool for actionscript?
Are there any lint tools available for actionscript? One source would be ideal, but anything is welcome.
My team is starting to adopt more a more rigorous style guide (where "more rigorous" means ...
8
votes
2answers
143 views
Is it possible to have vim prevent the saving of a php file that has a parse error?
I use vim and would like it to prevent me from saving php files that has parse errors. If I would like to use for instance "php -l <file>" to achieve this, how would the autocmd in .vimrc look ...
8
votes
2answers
498 views
Setting up SCons to Autolint
I'm using google's cpplint.py to verify source code in my project meets the standards set forth in the Google C++ Style Guide. We use SCons to build so I'd like to automate the process by having SCons ...
8
votes
4answers
2k views
Lint for C#
Is there a lint-like tool for C#? I've got the compiler to flag warnings-as-errors, and I've got Stylecop, but these only catch the most egregious errors. Are there any other must-have tools ...
7
votes
6answers
1k views
What are the comprehensive lint checkers for Python?
I hear that there are several tools that let you check the code for common Python mistakes, like pylint and pyflakes. I'm looking for one that is comprehensive, correct and simple to integrate into a ...
7
votes
2answers
205 views
Writing a R lint program
When I program in python, I find using pylint very useful. However, when I program in R, there is nothing comparable.
As a small side project, I thought it would be fun to try and write a small lint ...
7
votes
1answer
148 views
Is there an OCaml tool to support use of best practices like Perl's Perl::Critic module?
Does there exist a tool which analyzes OCaml programs and suggests some improvements in style and code? In the world of perl there still exists Perl::Critic to avoid bad style.
What I need are some ...
7
votes
2answers
1k views
in c: func(void) vs. func()
When a C function does not accept any arguments, does it have to be declared/defined with a "void" parameter by the language rules?
PC-Lint seems to have problems when there's nothing at all in the ...
7
votes
3answers
418 views
Are there any XSL Lint tools?
I'm looking for an XSL lint tool which is actively maintained. The only one I can find is this one, but the last update was in 2000 (9 years old!). Any help would be great!
6
votes
2answers
639 views
How to configure PyLint to check all things PEP8 checks?
Searching for an answer on PyLint's mailing list brings no interesting results.
PyLint is known to be very customizable so I guess this should be possible...
The reason I would like PyLint to check ...
6
votes
1answer
153 views
Looking for intentionally buggy code snippets
Hey, I'm looking for some database of intentionally buggy code in C++.
I want to give a presentation about static code analysis tools, and I want to show some examples in action.
6
votes
4answers
2k views
JSLint: control comments (selective ignore)
Does JSLint have anything like JavaScript Lint's control comments (e.g. /*jsl:fallthru*/) to make it ignore certain passages?
5
votes
1answer
144 views
False positive Error 503 for call to template function
I have some code that PC-Lint is giving me Error 503: Boolean argument to relational on. It is a call to a template function which is defined like this:
template <typename ITypeToUse>
void ...
5
votes
2answers
300 views
Lint-like program for Perl?
I'm looking for a lint for Perl, something that would catch dead code and other potential problems. Any suggestions?
I have
use strict;
use warnings;
already but I'd like to have more.
5
votes
3answers
133 views
Is there a good way to make sure a C++ function result is not ignored?
I ran into a case recently where I had a const member function performing an operation and returning a result. For example,
class Foo { ...
Foo add(Foo const & x) const;
}
But someone else ...
5
votes
3answers
233 views
finding vim efm for csslint messages
With the newly released csslint I wanted to try to hook it into vim as my makefile for .css files. I'm having a hard time getting the multi-line error format working for the output.
My best result ...
4
votes
2answers
279 views
When i Update My ADT Plugin For Android i Get Run Android Lint ,What Are Adavantages of it to use it for Android Project
Every One Here
When i Update my ADT Plugin to ADT 16 i get One New Thing Which is Run Android Lint when i Run it After Select my Android Project it Give me More 550 Warning related to Project for ...
4
votes
4answers
105 views
Perl shallow syntax check? ie. do not check syntax of imports
How can I perform a "shallow" syntax check on perl files. The standard perl -c is useful but it checks the syntax of imports. This is sometimes nice but not great when you work in a code repository ...
4
votes
2answers
173 views
Is there an equivalent to HLint for Erlang?
HLint is a Haskell lint tool for making code more idiomatic. Is there something like it for Erlang?
4
votes
3answers
255 views
Python code checker for comparing a function as an attribute
I occasionally spend a considerable amount of time tracking down brainfarts in my code... while I normally run pylint against it, there are some things that slip past pylint. The easiest problem for ...
4
votes
1answer
215 views
Struct defined differently for C and C++ - is it safe? PC-Lint warns
The following declaration adds a couple of operators for compilation in a C++ file. The definition is included in both C and C++ files.
PC-Lint is reporting Error 114: Inconsistent structure ...
4
votes
1answer
515 views
4
votes
4answers
372 views
Java Leaky Abstraction Checker
I am mulling over the idea of writing a program to check for
"leaky abstractions" in Java. The one area that popped into mind right away is with exceptions:
public class X
{
// this one is ...
4
votes
1answer
813 views
Tools for Applying an Arbitrary Lint to PHP code?
Are there any existing tools for applying an arbitrary lint to PHP code? I know about the command line flag (-l) and pecl extension that will check an input file for valid syntax. What I want is a ...
3
votes
2answers
142 views
PC Lint while(TRUE) vs for(;;)
I'm using PC Lint for the first time. I was "linting" my code, when PC Lint warns me about my while(TRUE).
This is what it says:
716: while(1) ... -- A construct of the form while(1) ... was ...
3
votes
2answers
153 views
Looking for simple to install & use PHP project Lint
I'm not striving for perfection, but bang for the buck (in freeware). Most return for least effort, 80/20 sort of thing.
I am using NetBeans for development. It is pretty good at telling me about ...
3
votes
2answers
496 views
How to exclude some of the “unable to open include file *.h” errors in pclint
I am using PC lint in my project. My project is compatible to build in both windows and linux. So i have used windows header(visualstudio) files and linux header files(gcc) in my project. I am running ...
3
votes
1answer
274 views
Lint-checking tools for Objective-C development
Large projects with multiple developers often result in code that is inconsistent in style. I am looking for a lint-like tool tailored to Objective-C that goes beyond the scope of the Clang Static ...
3
votes
2answers
88 views
Has anybody built a C-file for verifying the code-checking tools for MISRA-2004?
We are using PC-Lint for code-checking our sources for compliance with MISRA-2004. As this is a safety-relevant project and we're heading for a certificate by TUV, we need to show proof for our ...
3
votes
2answers
317 views
Is there a lint tool for OpenGL Shading Language?
I've started working with OpenGL and writing shaders. My app checks for errors after loading and compiling shader programs, and if there is a problem it prints out the info log. This is great for ...
3
votes
2answers
344 views
How can I check (My)SQL statements for syntactical correctness
we're currently setting up out integration server and during that process we've set up pre-commit hooks on the SVN so that our developers can't check in files that are syntactically invalid (primarily ...
3
votes
3answers
90 views
Is there an all purpose lint (-toolkit)?
I want to do a static code analysis on a bunch of scripts written in a not very common programming language (C like syntax). Frequent problems are:
the use of not defined/declared symbols
wrong ...
3
votes
2answers
335 views
Why doesn't lint tell me the line number and nature of the parse error?
I'm calling php lint from a Windows batch file, like so:
@echo off
for %%f in (*.php) do php -l %%f
When a file contains a syntax error, it only outputs Errors parsing xxx.php. Is there any way to ...
3
votes
4answers
402 views
Does anyone have good tips for using pc-lint?
What are some best practices for using pc-lint - how to wade thru the zillion options?
I'm particularly interested in better ways to read/parse the output files.
3
votes
4answers
902 views
How can I make splint ignore where I declare my variables?
Do you know how can I make splint ignore where I declare my variables?
I know that the old school c tells you to declare variables right at the
beginning in every function,
but since I am a bad ...
2
votes
1answer
42 views
Iterator usage - Lint warning
I am new to the usage of iterators. I have used the below code, where I parse through all the elements in the list using iterator, to determine whether the element exists in the list or not.
...