Skip to content

Commit

Permalink
create code linting in Javascript
Browse files Browse the repository at this point in the history
  • Loading branch information
tanham committed May 28, 2016
1 parent fcbfe61 commit 4681c6e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions Code-Linting-Javascript
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
Linting is the process of running a program that analyzes your code for programmatic and stylistc 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. They are used from the command line by passing in files, are available as plugins for tools, or are 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/)


1 comment on commit 4681c6e

@tanham
Copy link
Owner Author

@tanham tanham commented on 4681c6e May 28, 2016

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.