How to do JSLint in Vim

The best-practice way IMO is: Install Syntastic Vim plugin – Best syntax-checker around for plenty of languages, plus it integrates with Vim’s location-list (==quickfix) window. I recommend cloning from the GitHub repo and installing using a plugin manager like Vundle or Pathogen, since it’s more frequently updated. Choose one of the two options below: JSLint … Read more

Permission is only granted to system app

In Eclipse: Window -> Preferences -> Android -> Lint Error Checking. In the list find an entry with ID = ProtectedPermission. Set the Severity to something lower than Error. This way you can still compile the project using Eclipse. In Android Studio: File -> Settings -> Editor -> Inspections Under Android Lint, locate Using system … Read more

What is “Linting”?

Linting is the process of running a program that will analyse code for potential errors. See lint on wikipedia: lint was the name originally given to a particular program that flagged some suspicious and non-portable constructs (likely to be bugs) in C language source code. The term is now applied generically to tools that flag … Read more