UNPKG

916 BPlain TextView Raw
1{
2 // Details: https://github.com/victorporof/Sublime-JSHint#using-your-own-jshintrc-options
3 // Example: https://github.com/jshint/jshint/blob/master/examples/.jshintrc
4 // Documentation: http://www.jshint.com/docs/
5 "browser": true,
6 "esnext": true,
7 "globals": {
8 "global": true,
9 "Buffer": true,
10 "__dirname": true,
11 "process": true,
12 "module": true,
13 "exports": true,
14 "console": true,
15 "alert": true,
16 "confirm": true,
17 "unescape": true,
18 "escape": true,
19 "require": true,
20 "define": true,
21 "describe": true,
22 "it": true,
23 "before": true,
24 "after": true,
25 "beforeEach": true,
26 "afterEach": true,
27 "assert": true,
28 "sinon": true
29 },
30 "globalstrict": true,
31 "quotmark": false,
32 "smarttabs": true,
33 "trailing": true,
34 "undef": true,
35 "unused": false,
36 "eqeqeq": true,
37 "expr": true,
38 "boss": true,
39 "sub": true,
40 "loopfunc": true
41}