-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
63 lines (60 loc) · 1.6 KB
/
Gruntfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
/*jshint node:true */
module.exports = function ( grunt ) {
grunt.loadNpmTasks( 'grunt-contrib-jshint' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-jscs' );
grunt.loadNpmTasks( 'grunt-jsonlint' );
grunt.initConfig( {
pkg: grunt.file.readJSON( 'package.json' ),
jshint: {
options: {
jshintrc: true
},
all: [
'*.js',
'{includes,languages,resources,skins,tests}/**/*.js'
]
},
jscs: {
all: [
'<%= jshint.all %>',
// Auto-generated file with JSON (double quotes)
'!tests/qunit/data/mediawiki.jqueryMsg.data.js',
// Skip functions are stored as script files but wrapped in a function when
// executed. node-jscs trips on the would-be "Illegal return statement".
'!resources/src/*-skip.js'
// Exclude all files ignored by jshint
].concat( grunt.file.read( '.jshintignore' ).split( '\n' ).reduce( function ( patterns, pattern ) {
// Filter out empty lines
if ( pattern.length && pattern[0] !== '#' ) {
patterns.push( '!' + pattern );
}
return patterns;
}, [] ) )
},
jsonlint: {
all: [
'.jscsrc',
'{languages,maintenance,resources}/**/*.json',
'package.json'
]
},
banana: {
core: 'languages/i18n/',
installer: 'includes/installer/i18n/'
},
watch: {
files: [
'<%= jscs.all %>',
'<%= jsonlint.all %>',
'.jshintignore',
'.jshintrc'
],
tasks: 'test'
}
} );
grunt.registerTask( 'lint', ['jshint', 'jscs', 'jsonlint', 'banana'] );
grunt.registerTask( 'test', ['lint'] );
grunt.registerTask( 'default', ['test'] );
};