-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
49 lines (45 loc) · 1.11 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
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-sass-lint');
grunt.loadNpmTasks('grunt-puglint');
grunt.loadNpmTasks('grunt-contrib-jshint');
grunt.loadNpmTasks('grunt-jsonlint');
grunt.loadTasks('tasks');
grunt.initConfig({
puglint: {
files: [ 'app/**/*.pug' ]
},
sasslint: {
options: {
files: {
// FIXME: old sasslint does not like new style interpolated vars
ignore: "app/ok-sdk/style/style.sass",
},
rules: {
"placeholder-in-extend": 0
}
},
target: ['app/ok-sdk/\*.sass', 'app/ok-sdk/\*/\*.sass']
},
jshint: { files: ['Gruntfile.js'] },
jsonlint: {
default: {
src: ['package.json']
}
},
yaml2json: {
convert: {
files: [ {
expand: true,
cwd: 'var/ok-sdk/',
src: '**/*.yaml',
dest: 'var/ok-sdk/',
ext: '.json'
} ]
}
}
});
grunt.registerTask('lint', ['puglint', 'jsonlint']);
grunt.registerTask('build', ['yaml2json']);
grunt.registerTask('default', ['lint', 'build']);
grunt.registerTask('test', 'default');
};