From 9638a0903ae79366382ac7f5f7c554ba378d4ced Mon Sep 17 00:00:00 2001 From: Kevin Kirsche Date: Wed, 2 Sep 2015 06:24:44 -0700 Subject: [PATCH] Remove E036 Fix #303 --- src/bootlint.js | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/src/bootlint.js b/src/bootlint.js index 4c5f24a3..64624de0 100644 --- a/src/bootlint.js +++ b/src/bootlint.js @@ -853,16 +853,6 @@ var LocationIndex = _location.LocationIndex; reporter('Neither `.form-inline` nor `.form-horizontal` should be used directly on a `.form-group`. Instead, nest the `.form-group` within the `.form-inline` or `.form-horizontal`', badFormGroups); } }); - addLinter("E036", function lintMultipleInputGroupButtons($, reporter) { - $('.input-group-btn').each(function () { - ['.btn:not(.dropdown-toggle)', '.dropdown-menu'].forEach(function (selector) { - var elements = $(this).children(selector); - if (elements.length > 1) { - reporter('Having multiple `' + selector.split(':')[0] + '`s inside of a single `.input-group-btn` is not supported', elements.slice(1)); - } - }, this); - }); - }); addLinter("E037", function lintColZeros($, reporter) { var selector = SCREENS.map(function (screen) { return ".col-" + screen + "-0";