-
Notifications
You must be signed in to change notification settings - Fork 7
/
README
49 lines (30 loc) · 1005 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
JSLint Reporter
Node.js wrapper for JSLint <http://jslint.com>
----
⚠ NOTE: This wrapper no longer constitutes the state of the art. We recommend
using one of the alternatives listed below.
----
Usage:
$ jslint-reporter [options] <filepath>
(use `--upgrade` to generate jslint.js alongside wrapper.js)
Options:
--<name>[=<value>]
names as per http://www.jslint.com/lint.html#options
(e.g. "--vars --predef=foo,bar,baz --maxlen=80")
--format=<format>
output format, using the following placeholders:
{f}: file {l}: line {c}: character {m}: message
defaults to "{f}:{l}:{c}:{m}"
--upgrade
download latest version of JSLint
--verbose
display additional information
--version
display version numbers for both JSLint Reporter and JSLint
--help
display this usage information
Alternatives
------------
* see <https://github.com/douglascrockford/JSLint/wiki/JSLINT>
* JSHint <http://jshint.com>
* ESLint <http://eslint.org>