mirror of https://github.com/ColorlibHQ/AdminLTE
Separate: task 'JSCS' and create module for 'load-config-grunt'
parent
78bdcb26ec
commit
ba167fa22d
|
@ -0,0 +1,19 @@
|
|||
// Lint JS code
|
||||
'use strict';
|
||||
|
||||
module.exports = function (grunt) {
|
||||
return {
|
||||
options: {
|
||||
config: 'build/js/.jscsrc'
|
||||
},
|
||||
grunt: {
|
||||
src: ['Gruntfile.js']
|
||||
},
|
||||
core: {
|
||||
src: 'js/src/*.js'
|
||||
}
|
||||
/*app: {
|
||||
src: 'dist/js/app.js'
|
||||
}*/
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue