From be9fd8414bb49d9806b2a1b98ae70d9fea92edd2 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 18 Sep 2018 11:51:50 +0300 Subject: Move requires to the top. --- tasks/bootlint.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tasks/bootlint.js b/tasks/bootlint.js index f15b653..fcd6656 100644 --- a/tasks/bootlint.js +++ b/tasks/bootlint.js @@ -8,11 +8,11 @@ 'use strict'; -module.exports = function(grunt) { - const bootlint = require('bootlint'); - const chalk = require('chalk'); - const micromatch = require('micromatch'); +const bootlint = require('bootlint'); +const chalk = require('chalk'); +const micromatch = require('micromatch'); +module.exports = function(grunt) { grunt.registerMultiTask('bootlint', 'An HTML linter for Bootstrap projects', function() { const options = this.options({ stoponerror: false, -- cgit v1.2.3