Learn R Programming

js (version 1.2.1)

jshint: Static analysis tool for JavaScript

Description

JSHint is a community-driven tool to detect errors and potential problems in JavaScript code. It is very flexible so you can easily adjust it to your particular coding guidelines and the environment you expect your code to execute in.

Usage

jshint(text, ..., globals = NULL)

Value

a data frame where each row represents a jshint error or NULL if there were no errors

Arguments

text

a string of JavaScript code

...

additional jshint configuration options

globals

a white list of global variables that are not formally defined in the source code

Examples

Run this code
code = "var foo = 123"
jshint(code)
jshint(code, asi = TRUE)

Run the code above in your browser using DataLab