Skip to content
This repository has been archived by the owner on Feb 1, 2022. It is now read-only.

Commit

Permalink
Remove E036
Browse files Browse the repository at this point in the history
Fix #303
  • Loading branch information
kkirsche committed Sep 2, 2015
1 parent 668eea3 commit 9638a09
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/bootlint.js
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 9638a09

Please sign in to comment.