mediawiki.util: Add mw.log.deprecate to #jsMessage
[lhc/web/wiklou.git] / .jshintrc
1 {
2 /* Common */
3
4 // Enforcing
5 "eqeqeq": true,
6 "es3": true,
7 "latedef": true,
8 "noarg": true,
9 "nonew": true,
10 "undef": true,
11 "unused": true,
12
13 /* Local */
14
15 // FIXME: Deprecated, handle these with node-jscs instead.
16 // Handled here because we still have inline overrides in some places.
17 "camelcase": true,
18 "nomen": true,
19
20 // Enforcing
21 "bitwise": true,
22 "forin": false,
23 "regexp": false,
24 "strict": false,
25 // Relaxing
26 "laxbreak": true,
27 "smarttabs": true,
28 "multistr": true,
29 // Environment
30 "browser": true,
31
32 "predef": [
33 "mediaWiki",
34 "jQuery",
35 "QUnit"
36 ]
37 }