A community-driven tool to detect errors and potential problems in JavaScript code and to enforce coding conventions.
I am using atom, and I've tried several different jshint packages and they all give a warning which says "template …
javascript ecmascript-6 jshint atom-editorOriginal Question: JSHint complains when my JavaScript calls a function that is defined further down the page than the call …
javascript function jslint jshintJshint.com is giving the error: Line 36: var signin_found; Missing "use strict" statement.
javascript jshintIs there an option to and/or how do I suppress errors like the following? 175,14:['tracker'] is better written in …
javascript syntax properties jshintSo I've got a fresh install of El Capitan and I'm giving these task runners another go. I'm following sitepoint's …
javascript terminal gulp jshintI think this may be a duplicate of Strict Violation using this keyword and revealing module pattern I have this …
javascript jslint strict jshintI can not get around JSHint's error message. Here is the loop I am using: for (i = 0; i < Collection.…
javascript jshintI have just started using JSHint (through the Sublime-Linter package for Sublime Text 2). I would like to suppress its warnings …
javascript jquery jslint jshintI'm using function form of "use strict" and don't want global form which Babel adds after transpilation. The problem is …
javascript jshint babeljs use-strictIn my project we have some global variables that work as containers: MyProject.MyFreature.someFunction = function() { ... } So then I use …
javascript global-variables jslint jshint