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

Commit 9d592af

Browse files
committed
v0.16.5.
1 parent 397c6ef commit 9d592af

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

dist/browser/bootlint.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
* Bootlint v0.16.4 (https://github.com/twbs/bootlint)
2+
* Bootlint v0.16.5 (https://github.com/twbs/bootlint)
33
* HTML linter for Bootstrap projects
44
* Copyright (c) 2014-2019 The Bootlint Authors
55
* Licensed under the MIT License (https://github.com/twbs/bootlint/blob/master/LICENSE).
@@ -12583,15 +12583,15 @@ var LocationIndex = _location.LocationIndex;
1258312583
var rowsOutsideColumnsAndContainers = rowsOutsideColumns.filter(function () {
1258412584
var parent = $(this).parent();
1258512585
while (parent.length) {
12586-
if (parent.is('.container, .container-fluid')) {
12586+
if (parent.is('.container, .container-fluid, .modal-body')) {
1258712587
return false;
1258812588
}
1258912589
parent = $(parent).parent();
1259012590
}
1259112591
return true;
1259212592
});
1259312593
if (rowsOutsideColumnsAndContainers.length) {
12594-
reporter('Found one or more `.row`s that were not children of a grid column or descendants of a `.container` or `.container-fluid`', rowsOutsideColumnsAndContainers);
12594+
reporter('Found one or more `.row`s that were not children of a grid column or descendants of a `.container` or `.container-fluid` or `.modal-body`', rowsOutsideColumnsAndContainers);
1259512595
}
1259612596
});
1259712597
addLinter('E004', function lintNestedContainers($, reporter) {

dist/browser/bootlint.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/browser/bootlint.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bootlint",
3-
"version": "0.16.4",
3+
"version": "0.16.5",
44
"description": "HTML linter for Bootstrap projects",
55
"license": "MIT",
66
"author": "Chris Rebert <[email protected]> (http://chrisrebert.com)",

0 commit comments

Comments
 (0)