mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/VisualEditor
synced 2024-11-12 09:09:25 +00:00
cf7f2b141d
Let's experiment with this via our local Gruntfile. If it works fine we can install it in Jenkins (similar to node-csslint). Verify through $ npm install && npm test; Fixed all outstanding violations. Also: * Added syntaxhighight to ignore. * Added imetests (which contain unformatted JSON) to ignore. * In ve.dm.ModelRegistry#matchTypeRegExps, removed redundant !! cast from the [+!!withFunc] statement which was hitting a bug in node-jscs. All callers to this local private function pass a literal boolean true/false so no need to cast it. * Removed "/* key .. , value */" from ve.setProp, though this wasn't caught by node-jscs, found it when searching for " , ". * Made npm.devDependencies fixed instead of using tilde-ranges. This too often leads to strange bugs or sudden changes. Fixed them at the version they were currently ranging to. Bug: 54218 Change-Id: Ib2630806f3946874c8b01e58cf171df83a28da29
26 lines
614 B
JSON
26 lines
614 B
JSON
{
|
|
"name": "visualeditor",
|
|
"version": "0.0.0",
|
|
"scripts": {
|
|
"test": "grunt test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://gerrit.wikimedia.org/r/p/mediawiki/extensions/VisualEditor.git"
|
|
},
|
|
"licenses": [
|
|
{
|
|
"type": "MIT",
|
|
"url": "https://git.wikimedia.org/blob/mediawiki%2Fextensions%2FVisualEditor.git/master/LICENSE.txt"
|
|
}
|
|
],
|
|
"devDependencies": {
|
|
"grunt": "0.4.2",
|
|
"grunt-contrib-jshint": "0.5.4",
|
|
"grunt-contrib-csslint": "0.1.2",
|
|
"grunt-contrib-qunit": "0.2.2",
|
|
"grunt-contrib-watch": "0.4.4",
|
|
"grunt-jscs-checker": "0.2.5"
|
|
}
|
|
}
|