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 "Make update.php file executable"
[mediawiki.git]
/
.jshintrc
blob
4eec7a0eb82bc004b75a3a1ad6b39d8c5197af69
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
}