Skip to content

Commit

Permalink
create code linting in Javascript
Browse files Browse the repository at this point in the history
Rename Code-Linting-Javascript to Code-Linting-Javascript.md

Delete Code-Linting-Javascript.md

created JS-Code-Linting-In-Javascript

closes freeCodeCamp#608

 Please enter the commit message for your changes. Lines starting
  • Loading branch information
tanham committed Jun 2, 2016
1 parent 53e805e commit d3af52c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
11 changes: 0 additions & 11 deletions Code-Linting-Javascript.md

This file was deleted.

9 changes: 9 additions & 0 deletions JS-Code-Linting-In-Javascript.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
Linting is the process of running a program that analyzes your code for programmatic and stylistic errors. A linting tool, or a linter, marks or flags any potential errors in your code such as syntax errors or incorrectly spelled variable names. This can save time and help you write better code.

Linters can be installed using ```npm``` or another package manager. Linters can be used from the command line by passing in files. Linters are also available as plugins for tools and sometimes they are directly integrated into editors.

Here are some popular Javascript Linters:
* [JSLint](http://www.javascriptlint.com/online_lint.php)
* [JSHint](http://jshint.com/)
* [JSCS](http://jscs.info/)
* [ESLint](http://eslint.org/)

0 comments on commit d3af52c

Please sign in to comment.