module.exports = grunt => { grunt.config.merge({ lesslint: { src: ['internal_packages/**/*.less', 'dot-nylas/**/*.less', 'static/**/*.less'], options: { less: { paths: ['static', 'static/base/'], }, imports: ['static/base/*.less'], }, }, }); grunt.loadNpmTasks('grunt-contrib-less'); grunt.loadNpmTasks('grunt-lesslint'); };