summaryrefslogtreecommitdiff
path: root/www/wiki/skins/chameleon/Gruntfile.js
blob: ff13d51472e4d2a2bf4f85945ec4ef4c7c02e107 (plain)
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
/*jshint node:true */
module.exports = function ( grunt ) {

	'use strict';

	grunt.loadNpmTasks( 'grunt-contrib-jshint' );
	grunt.loadNpmTasks( 'grunt-jsonlint' );
	grunt.loadNpmTasks( 'grunt-banana-checker' );

	grunt.initConfig( {
		jshint: {
			options: {
				// Enforcing
				"bitwise": true,
				"curly": true,
				"eqeqeq": true,
				"freeze": true,
				"latedef": "nofunc",
				"noarg": true,
				"nonew": true,
				"undef": true,
				"unused": true,
				"strict": true,

				// ECMAScript version
				"esversion": 3,

				// Environment
				"browser": true,
				"jquery": true,

				// map of global variables, with keys as names and a boolean value to determine if they are assignable
				"globals": {
					"mediaWiki": false
				},

				"ignores": []
			},
			all: [
				'**/*.js',
				'!node_modules/**',
				'!resources/js/sticky-kit/**'
			]
		},
		banana: {
			all: 'resources/i18n/'
		},
		jsonlint: {
			all: [
				'**/*.json',
				'!node_modules/**'
			]
		}
	} );

	grunt.registerTask( 'lint', [ 'jshint', 'jsonlint', 'banana' ] );
	grunt.registerTask( 'test', [ 'lint' ] );
	grunt.registerTask( 'default', 'test' );
};