-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gruntfile.js
executable file
·41 lines (36 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
/* eslint-env node */
'use strict';
const
scripts = ['base.js', 'calendar.js', 'admin.js', 'reservations.js'],
templates = ['base.html', 'index.html', 'calendar.html', 'contact.html', 'admin.html', 'reservations.html', 'sudo.html'];
module.exports = function (grunt) {
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
eslint: {
options: {
configFile: '.eslintrc.json',
},
target: scripts.map(x => `static/scripts/${x}`),
},
sasslint: {
target: [
'static/styles/*.scss',
],
options: {
configFile: '.sass-lint.yml',
},
},
htmlhint: {
options: {
htmlhintrc: '.htmlhintrc',
},
html1: {
src: templates.map(x => `templates/${x}`),
},
},
});
grunt.loadNpmTasks('gruntify-eslint');
grunt.loadNpmTasks('grunt-sass-lint');
grunt.loadNpmTasks('grunt-htmlhint');
grunt.registerTask('default', ['eslint', 'sasslint', 'htmlhint']);
};