repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge "Whitelist the <wbr> element."
[mediawiki.git]
/
.jshintrc
blob
c4e265a4de6d9b514a34b31e1713c25621dc84cc
1
{
2
/* Common */
3
4
// Enforcing
5
"camelcase": true,
6
"curly": true,
7
"eqeqeq": true,
8
"immed": true,
9
"latedef": true,
10
"newcap": true,
11
"noarg": true,
12
"noempty": true,
13
"nonew": true,
14
"quotmark": "single",
15
"trailing": true,
16
"undef": true,
17
"unused": true,
18
// Legacy
19
"onevar": true,
20
21
/* Local */
22
23
// Enforcing
24
"bitwise": true,
25
"forin": false,
26
"regexp": false,
27
"strict": false,
28
// Relaxing
29
"laxbreak": true,
30
"smarttabs": true,
31
"multistr": true,
32
// Environment
33
"browser": true,
34
// Legacy
35
"nomen": true,
36
37
"predef": [
38
"mediaWiki",
39
"jQuery",
40
"QUnit"
41
]
42
}