mirror of
https://github.com/grafana/grafana.git
synced 2025-07-30 04:02:08 +08:00
13 lines
238 B
JavaScript
13 lines
238 B
JavaScript
module.exports = function(config) {
|
|
return {
|
|
// just lint the source dir
|
|
source: {
|
|
files: {
|
|
src: ['Gruntfile.js', '<%= srcDir %>/app/**/*.js']
|
|
}
|
|
},
|
|
options: {
|
|
jshintrc: '.jshintrc'
|
|
}
|
|
};
|
|
}; |