mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-12 09:27:36 +00:00
198bf44c1a
Every patch we've submitted up until now has been magically very good at jshint, because I'm appropriately OCD about it, but now we can actually point at results. Also we'll enable voting very soon. Change-Id: I028fa78a47778c8a4050f6b77623c6bfdc4f9c5b
43 lines
562 B
Plaintext
43 lines
562 B
Plaintext
{
|
|
/* Common */
|
|
|
|
// Enforcing
|
|
"camelcase": true,
|
|
"curly": true,
|
|
"eqeqeq": true,
|
|
"immed": true,
|
|
"latedef": true,
|
|
"newcap": true,
|
|
"noarg": true,
|
|
"noempty": true,
|
|
"nonew": true,
|
|
"quotmark": "single",
|
|
"trailing": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
// Legacy
|
|
"onevar": true,
|
|
|
|
/* Local */
|
|
|
|
// Enforcing
|
|
"bitwise": true,
|
|
// Relaxing
|
|
"laxbreak": true,
|
|
"smarttabs": true,
|
|
"multistr": true,
|
|
// Environment
|
|
"browser": true,
|
|
// Legacy
|
|
"nomen": true,
|
|
|
|
"predef": [
|
|
"mediaWiki",
|
|
"jQuery",
|
|
"QUnit",
|
|
"OO",
|
|
"moment",
|
|
"lightboxHooks"
|
|
]
|
|
}
|