mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 09:09:25 +00:00
ab4d3e956b
New changes: 0371bbe [BREAKING CHANGE] Refine VisualEditorSupportCheck call and document pattern Local changes: Use new VisualEditorSupportCheck pattern Change-Id: I7dc0c360b54a93397180b18d88d72532e439da5c
30 lines
405 B
Plaintext
30 lines
405 B
Plaintext
{
|
|
// Enforcing
|
|
"bitwise": true,
|
|
"eqeqeq": true,
|
|
"freeze": true,
|
|
"latedef": "nofunc",
|
|
"futurehostile": true,
|
|
"noarg": true,
|
|
"nonew": true,
|
|
"undef": true,
|
|
"unused": true,
|
|
|
|
"strict": false,
|
|
|
|
// Relaxing
|
|
|
|
// Environment
|
|
"browser": true,
|
|
"jquery": true,
|
|
|
|
"globals": {
|
|
"mw": false,
|
|
"OO": false,
|
|
"QUnit": false,
|
|
"unicodeJS": false,
|
|
"ve": false,
|
|
"VisualEditorSupportCheck": false
|
|
}
|
|
}
|