jshint | R Documentation |
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.
jshint(text, ..., globals = NULL)
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 |
a data frame where each row represents a jshint error or NULL
if there were no errors
code = "var foo = 123"
jshint(code)
jshint(code, asi = TRUE)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.