1{
2  "env": {
3    "node": true,
4    "browser": true,
5    "builtin": true
6  },
7  "globals": {
8    "jQuery": true,
9    "$": true,
10    "QTip": true,
11    "TRUE": true,
12    "FALSE": true,
13    "NULL": true,
14    "WIDTH": true,
15    "HEIGHT": true,
16    "TOP": true,
17    "LEFT": true,
18    "BOTTOM": true,
19    "RIGHT": true,
20    "X": true,
21    "Y": true,
22    "CENTER": true,
23    "FLIP": true,
24    "FLIPINVERT": true,
25    "SHIFT": true,
26    "QTIP": true,
27    "PROTOTYPE": true,
28    "CORNER": true,
29    "CHECKS": true,
30    "PLUGINS": true,
31    "NAMESPACE": true,
32    "ATTR_HAS": true,
33    "ATTR_ID": true,
34    "WIDGET": true,
35    "SELECTOR": true,
36    "INACTIVE_EVENTS": true,
37    "CLASS_FIXED": true,
38    "CLASS_DEFAULT": true,
39    "CLASS_FOCUS": true,
40    "CLASS_HOVER": true,
41    "CLASS_DISABLED": true,
42    "BROWSER": true,
43    "replaceSuffix": true,
44    "oldtitle": true,
45    "trackingBound": true,
46    "createWidgetClass": true,
47    "sanitizeOptions": true,
48    "cloneEvent": true
49  },
50  "rules": {
51    "block-scoped-var": 2,
52    "camelcase": 2,
53    "curly": [
54      2,
55      "all"
56    ],
57    "dot-notation": [
58      2,
59      {
60        "allowKeywords": true
61      }
62    ],
63    "eqeqeq": [
64      2,
65      "allow-null"
66    ],
67    "strict": [
68      2,
69      "never"
70    ],
71    "guard-for-in": 2,
72    "new-cap": 2,
73    "no-bitwise": 2,
74    "no-caller": 2,
75    "no-debugger": 2,
76    "no-empty": 2,
77    "no-eval": 2,
78    "no-extend-native": 2,
79    "no-extra-parens": 2,
80    "no-irregular-whitespace": 2,
81    "no-iterator": 2,
82    "no-loop-func": 2,
83    "no-multi-str": 2,
84    "no-new": 2,
85    "no-proto": 2,
86    "no-script-url": 2,
87    "no-sequences": 2,
88    "no-shadow": 2,
89    "no-undef": 2,
90    "no-unused-vars": 2,
91    "no-with": 2,
92    "quotes": [
93      2,
94      "single"
95    ],
96    "semi": [
97      0,
98      "never"
99    ],
100    "valid-typeof": 2,
101    "wrap-iife": [
102      2,
103      "inside"
104    ]
105  }
106}