JSLint & JSHint 学习笔记 The JavaScript Code Quality Tool

JSLint - JavaScript Code Quality Tool 代码质量分析工具

JavaScript syntax checker and validator.
JavaScript 语法检测及验证。

JSLint takes a JavaScript source and scans it. If it finds a problem, it returns a message describing the problem and an approximate location within the source. The problem is not necessarily a syntax error, although it often is.
JSLint 扫描 JavaScript 源代码。当发现问题时,返回一段消息描述问题及对应的位置。

JSLint 的使用

通过 Node 来使用 JSLint。参见 node-jslint

安装:npm install --save jslint

提供了两种使用方式:

  • Use the command-line client 通过命令行使用
    例如 jslint example.js
  • Use node-jslint programmatically 编程使用

JSHint - A Static Code Analysis Tool for JavaScript 代码质量分析工具

JSHint is a community-driven tool that detects errors and potential problems in JavaScript code. Since JSHint is so flexible, you can easily adjust it in the environment you expect your code to execute. JSHint is open source and will always stay this way.
发现 JavaScript 代码中的错误和潜在的问题。

JSHint 的使用

通过 Node 来使用 JSLint。参见 jshint

安装:npm install -g jshint

  • Use the command-line client 通过命令行使用。具体参见 Command-line Interface
    例如 jshint example.js
  • Use node-jslint programmatically 编程使用。具体参见 Application Programming Interface

引用:
JSLint官网
JSHint 官网

你可能感兴趣的:(JSLint & JSHint 学习笔记 The JavaScript Code Quality Tool)