Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/grunt-bootlint.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2018-09-18 11:51:50 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-09-18 12:13:30 +0300
commitbe9fd8414bb49d9806b2a1b98ae70d9fea92edd2 (patch)
tree45b1260fa3833d291fd36d1e6ce48a827ce77789
parent80527e19c691874bf4fe43cc9cfd4d11119df45c (diff)
Move requires to the top.
-rw-r--r--tasks/bootlint.js8
1 files 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,