Skip to content

Commit

Permalink
Suggest ESLint, JSHint, and JSCS as linters
Browse files Browse the repository at this point in the history
Mentions ESLint's strengths, but doesn't go in-depth on why you'd use one of the others.

Resolves jstherightway#205.
  • Loading branch information
NateEag committed Aug 16, 2015
1 parent 44347bf commit 297f908
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions public/en-us/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ <h3>Conventions</h3>
<h3>Linting</h3>

<p>
Nowadays the best tool for linting your JavaScript code is <a target="_blank" href="http://www.jshint.com/">JSHint</a>. We recommend that whenever possible you verify your code style and patterns with a Lint tool.
It's easy to make mistakes in JavaScript, so it's useful to have a program to catch them. <a target="_blank" href="http://eslint.org/">ESLint</a> ships with reasonable defaults, is fully configurable, and supports custom rules via plugins. <a target="_blank" href="http://www.jshint.com/">JSHint</a> and <a target="_blank" href="http://jscs.info/">JSCS</a> are also options.
</p>

</div></section>
Expand Down Expand Up @@ -1459,4 +1459,4 @@ <h1>Contributors</h1>
asyncScriptLoad( 'https://apis.google.com/js/plusone.js', 'google-plusone' );
</script>
</body>
</html>
</html>

0 comments on commit 297f908

Please sign in to comment.