bootlint
bootlint copied to clipboard
E013 Only columns (`.col-*-*`) may be children of `.row`s - not only!
According to http://getbootstrap.com/css/#grid-responsive-resets .row
s can have children:
.clearfix
.visible-*-*
.hidden-*
Also the same error appears if I use col-xl-*
https://github.com/twbs/bootstrap/issues/19831
The same error occurs if using the new col or col-*
<div class="container">
<div class="row">
<div class="col">
1 of 3
</div>
<div class="col-6">
2 of 3 (wider)
</div>
<div class="col">
3 of 3
</div>
</div>
<div class="row">
<div class="col">
1 of 3
</div>
<div class="col-5">
2 of 3 (wider)
</div>
<div class="col">
3 of 3
</div>
</div>
</div>
@MikeRankin Bootlint currently only supports Bootstrap 3.
Hej, @cvrebert, is there any (official) info about future release of Bootlint?
I know it made sense to wait for the final v4 because of breaking changes in the betas. So are you starting to throw time and energy to bootlint since Bootstrap v4 is final since a couple of days.
@mischah See #410.
@Herst Thanks.
Hi, is there any current way to bypass this?
Is there a Bootlint implementation for bootstrap 4?
Perhaps @Herst has a version which could be used in order to lint projects made in Bootstrap 4?