lint is a tool to pick fluff from C programs, i.e. it provides many warnings beyond those a typical C compiler would diagnose.

learn more… | top users | synonyms

0
votes
0answers
11 views

Disable Lint Info 768 for all struct members

I don't know if this is the right place to ask the question but I will do it anyway. I have a problem with Lint, I am currently migrating some code from another project and there are many struct ...
1
vote
0answers
20 views

supressLint cannot be resolved to a type error (android beginner tutorial online)

In thefollowing Code, I get a problem when following the Android beginners tutorial at http://developer.android.com/training/basics/firstapp/starting-activity.html#StartActivity Eclipse is ...
0
votes
1answer
36 views

Podspec linting fails on TARGET_OS_IPHONE conditional

I'm trying to create a podspec for a library that has a source file which contains a TARGET_OS_IPHONE conditional. The linting reports errors YapDatabase (1.2.1) - ERROR | [OSX] [xcodebuild] ...
1
vote
1answer
28 views

Disable Lint warning “The view name suggests this is a number but it does not include a numeric inputType”

I've searched through the list of warnings in the Lint Error Checking preferences but can't find it. The list is a bit too long to check every warning to see if it's the one I want, and filtering the ...
0
votes
1answer
58 views

Facebook open graph tags not working

This is our page http//:www.playtown-game.com. If you view the source you will see that we define the open graph tags for facebook to show the image and description that we want. However it does not ...
0
votes
2answers
74 views

Lint warnings when using std::unary_function

when checking a functor which is derived from std::unary_function as follows struct IsInterestingMsg : public std::unary_function<string,bool> Lint ejects the following info/warnings: 1790: ...
0
votes
0answers
29 views

How to get PC-Lint to print fully qualified function name in message?

I'm using PC-Lint to generate an XML file that contains all the warnings generated by a run. The process works almost flawlessly, with a rather annoying exception. I can't get the message format to ...
0
votes
2answers
452 views

What does this Android Lint Mean: “Wrong orientation?”

I'm running Android lint in eclipse and get a error: Wrong orientation? No orientation specified, and the default is horizontal, yet this layout has multiple children where at least one has ...
-3
votes
1answer
103 views

Eclipse suddenly started to do weird things

First of all, sorry for my bad english. I'm new on android but i can resolve some kind of logcat problems like classnotfoundexception ecc. But that one, i really can't understand it. Since a while, ...
1
vote
1answer
34 views

Android Lint Plugin - set custom warning / error that should be checked

My question is if there is a way to add to lint plugin a custom check which it should warn me about before building a version. For example I want it to check all Cursor, InputStream objects in my code ...
0
votes
2answers
109 views

managing 'deprecated' warnings in Android project with minSdkVersion

I hate warnings. Our Android project has 151 now, and I am sure that somewhere down the list there is one that actually warns us against a potential trouble. One type of these warnings is about ...
5
votes
1answer
258 views

Android: Lint says - Class referenced in the layout file, was not found in the project or the libraries

In my app, I am using Pull TO Refresh list view library. I had designed layouts for all screens respectively. When I ran lint on my project, in one of my layout file for xlarge screen, it gave me ...
1
vote
1answer
118 views

Trouble with -Xlint:all and maven

I'm trying to get maven to output lint level warnings. I've created a small test program that should generate a warning about using a static method from a non-static context, but despite a number of ...
0
votes
2answers
163 views

Lint warning for bad performance - 80+ Views

I am getting this lint warning error: highscores.xml has more than 80 views bad for performance. This is my high scores table that has 15 rows and 3 columns. This is the Lite version of my app and ...
0
votes
1answer
63 views

makefile: lint multiple source files and out put to corresponding txt files

I'm trying to run a makefile on a directory such that it runs lint on all the cpp files in that directory and save the output in multiple files with the same names as source files. e.g. in other ...
0
votes
0answers
44 views

Running lint in windows

I have some experience with SPLint and i am currently looking for alternatives. Lint itself seems tempting, is there a port for windows available somewhere?
0
votes
0answers
113 views

Lint unable to recognizing std::string class

I am trying to lint my project. But it seems like Lint is unable to recognize the classes such as std::string, std::vector and std::queue. I am using lib-std.lnt config file as well but of no use, ...
1
vote
1answer
112 views

Is there a simple CLI Java linter?

I've been trying to find a Java linter capable of running on the CLI that is separate from Eclipse that I can call as a commit hook for git or from our automated build script. Does such a thing exist? ...
0
votes
1answer
75 views

Exclude all messages in PC-Lint

I am using PC-Lint for my C++ project. Is there a way to switch off all error and warning messages by default, so I can then reintroduce the required messages explicitly? I have read the chapter of ...
1
vote
1answer
41 views

How can I get Android Lint to show the results only for the current project?

I have a few projects in my Eclipse workspace and the Android Lint warnings tab shows the errors and warnings in all the projects. Is there any way I can filter the results so that I only see the ...
4
votes
2answers
189 views

Ignore several warnings in Android lint

I know I can ignore a rule in Lint with attribute tools:ignore My difficulty is that I want to ignore several rules. In my case, for Google analytics ga_trackingId, I want to ignore TypographyDashes ...
1
vote
1answer
45 views

When does the Android Eclipse toolkit run lint?

I just worked through the first introductory application for Android programming and noticed some strange behavior: When the second Activity was generated it received the line: ...
3
votes
0answers
52 views

Using lint comments with doxygen

for documentation we usually have to create an additional document describing what we did when any lint messages were disabled in code (e.g. /* lint --e228). It would make it much easier to use it ...
0
votes
0answers
55 views

Is there a lint/validation tool for Google App Engine Java code?

I understand that Google App Engine has some restrictions compared to regular Java. Is there any sort of "lint" tool or compile-time validation tool that will check my source code for features that ...
4
votes
1answer
3k views

What is better: @SuppressLint or @TargetApi?

I have issues in my app regarding StrictMode and added the code snippet that basically disables the StrictModeHelper. However, Lint complains about setThreadPolicy() now and proposes to either add ...
1
vote
1answer
31 views

How to reactivate checking for Android Java in Eclipse on a particular file?

I had this problem once before and solved it but forgot how :( Usually my Java files in Eclipse (Android Development Tool edition) are checked for syntax and compilation problems on the fly - I think ...
0
votes
1answer
192 views

How to make cpplint work with Jenkins warnings plugin

I added an 'Execute shell' build step in Jenkins to run the cpplint.py python /var/lib/jenkins/scripts/cpplint.py --counting=detailed `find path -name *.cpp I also added 'Scan for compiler ...
1
vote
0answers
505 views

Resolved color instead of a resource id

Recently I've seen appeared a lint error in my code: Should pass resolved color instead of resource id here: getResources().getColor(R.color.maps_list_background_color) MyClass.java ...
3
votes
2answers
170 views

Android Lint Check - StringFormatInvalid: what is wrong on %d%% remaining?

I'm using Android Lint for checking my translated strings. I have a string <string name='status_bar_text_remaining_capacity'>%d%% remaining</string> Lint reports this ...
1
vote
1answer
35 views

Variable og: tags

Hello and thanks for checking out my question. <meta property="og:image" content="http://www.myurl.com/images/test.png"/> I have an application that is intended to service multiple ...
3
votes
1answer
3k views

Android Lint asks to translate strings to MANY languages which i don't use in app [duplicate]

Possible Duplicate: Lint: How to ignore “<key> is not translated in <language>” errors? I have encountered strange problem. When i try to export signed application i see errors ...
0
votes
1answer
55 views

Can't see Lint window in Eclipse

Noob question...I've just installed Eclipse Classic 4.2.1, Java and the ADT. I've created my first project and have run Lint, which indicates a few warnings with exclamation marks in the Layout Editor ...
1
vote
0answers
99 views

CMake and running PC-Lint at file-level in Visual Studio

Is there way to run PC-Lint either for a specific file or for the whole project in CMake-generated Visual Studio projects? Currently I'm able to run PC-Lint per-project by creating custom targets ...
2
votes
2answers
415 views

How to integrate PC-lint with Visual C++ 2008

My company has the PC-lint executable lint-nt.exe. I am trying to use this to integrate PC-lint with MS Visual Studio 2008 to analyze .c/.cpp sources. But I have no success with getting that to work. ...
14
votes
2answers
7k views

Permission is only granted to system app

I have a System app that uses system permissions and I have those permissions listed in the manifest. Eclipse gives the following error when I try to make a build(command line build works): ...
0
votes
0answers
87 views

Fatal lint error when attempting to sign app

When I attempt to sign my app so that I can create a keystore to get the Google Maps API key, I get this error. "so and so" is not translated in bg, ca, cs, de, es, fi, fr, id, it, iw, ja, ko, lt, ...
3
votes
0answers
1k views

Error Linting URL: An internal error occurred while linting the URL

How to debug the facebook debugger? Detailed description of the problem: I use the "Open Graph Protocol In Posts and Pages" plugin to manually enter OG data for the posts on my self-hosted wordpress ...
0
votes
0answers
64 views

Suppress a package when running Android Lint

I am using Maven and Jenkins to build an Android app, and I want to use Lint to find code problems. How do I run Lint with a flag in lint.xml suppressing all warnings in dependencies? Thanks Markus
1
vote
0answers
32 views

Lint warning: Pointer member not directly freed or zeroed by destructor

I have an operation DeleteCurrentNode(...) which works on a doubly linked list (DLL). The purpose of this operation is to delete a node which is pointed my DLL cursor/index. (I have a cursor/index on ...
0
votes
1answer
152 views

PC-Lint treating header as library header

Using PC-Lint, I'm attempting to make a header file be treated as a library header so that I can suppress messages from inside it. I'm using the library module option +libm(module.c) which should ...
0
votes
1answer
57 views

Any tips for speeding up static analysis tool PC-Lint? Any experiences using .LOB files?

I'm interested in learning the main factors which affect PC-lint-ing time. I'm aware of a few such as -passes(#) which will increase the time PC-Lint takes (increase linearly?) or that reducing the ...
1
vote
2answers
209 views

C++, lint: lint does not discover taking reference to a local variable and passing it on to another function

Why does lint not complain in any of the following three lines in the code sample below? timeout(&a); timeout(&b); if (pthread_create(&t1, NULL, timeout, (void*) &a) != 0) Isn't it ...
2
votes
2answers
396 views

Writing custom lint.xml

Our Android project is dependent on some external projects over which we do not have control. Therefore I'm trying to setup custom lint.xml file so we can add ignore rules for them. As starting ...
2
votes
4answers
249 views

how to assign a value to a enum in C?

I have a enum and a struct defined like this: typedef enum { MONDAY = 1, TUESDAY, WEDNESDAY } ThreeDays; typedef struct { int hello; ThreeDays day; } Weekday; static Weekday weekday ...
0
votes
1answer
99 views

FlexeLint and boost::bimap

I have a problem with flinting code snippet that use boost::bimap. I have a simple bimap.cpp that looks like this: #include <boost/bimap.hpp> typedef boost::bimap<int, double> TestBimap; ...
0
votes
0answers
59 views

Integrated JavaScript Checker & Minifier/Obfusicator?

I know there are JavaScript obfusicators/minifiers and checkers (like Lint). But is there one that is integrated and has project support? Basically, I have a bunch of JavaScript files that are part ...
1
vote
1answer
53 views

Suppressing PHPLint's “operator applied to a value of type mixed”

I am currently in a phase of work to 'bullet-proof' my code (its nice to have the time to do it!). I'm using PHPLint which is doing the job admirably, however does anyone know how to suppress the ...
0
votes
2answers
115 views

Python check string indentation

I'm building an analyzer for a series of strings. I need to check how much each line is indented (either by tabs or by space) Each line is just a string in a text editor. How do I check by how much a ...
2
votes
2answers
142 views

Taint Analysis for C

I need to perform static taint analysis on my C program. I tried using Splint, no luck. Are there any other open source or freeware tools that are available to perform taint analysis? If yes, can you ...
1
vote
1answer
226 views

How does PC-Lint (by Gimpel) look across multiple modules?

I'm using Gimpel's PC-Lint v8.00 on a C codebase and am looking to understand how it traverses modules. The PC-lint manual only goes as far as to say that PC-Lint "looks across multiple modules". How ...

1 2 3 4