forked from wikimedia/mediawiki-extensions-Flow
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
59 lines (54 loc) · 1.16 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
/*!
* Grunt file
*
* @package Flow
*/
'use strict';
module.exports = function ( grunt ) {
const conf = grunt.file.readJSON( 'extension.json' );
grunt.loadNpmTasks( 'grunt-banana-checker' );
grunt.loadNpmTasks( 'grunt-contrib-watch' );
grunt.loadNpmTasks( 'grunt-eslint' );
grunt.loadNpmTasks( 'grunt-stylelint' );
grunt.loadNpmTasks( 'grunt-tyops' );
grunt.initConfig( {
tyops: {
options: {
typos: 'build/typos.json'
},
src: [
'**/*',
'!{node_modules,vendor,docs}/**',
'!build/typos.json'
]
},
eslint: {
options: {
cache: true,
fix: grunt.option( 'fix' )
},
all: [
'**/*.{js,json}',
'!{modules/libs,docs,vendor,node_modules}/**'
]
},
stylelint: {
all: [
'modules/**/*.css',
'modules/**/*.less'
]
},
banana: Object.assign( { options: { requireLowerCase: false } }, conf.MessagesDirs ),
watch: {
files: [
'.{stylelintrc,eslintrc}.json',
'<%= eslint.all %>',
'<%= stylelint.all %>'
],
tasks: 'test'
}
} );
grunt.registerTask( 'lint', [ 'tyops', 'eslint', 'stylelint', 'banana' ] );
grunt.registerTask( 'test', 'lint' );
grunt.registerTask( 'default', 'test' );
};