mediawiki-extensions-Visual.../.jshintrc
James D. Forrester ab4d3e956b Update VE core submodule to master (0371bbe)
New changes:
0371bbe [BREAKING CHANGE] Refine VisualEditorSupportCheck call and document pattern

Local changes: Use new VisualEditorSupportCheck pattern

Change-Id: I7dc0c360b54a93397180b18d88d72532e439da5c
2016-02-26 12:26:56 -08:00

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
}
}