bootlint icon indicating copy to clipboard operation
bootlint copied to clipboard

E013 Only columns (`.col-*-*`) may be children of `.row`s - not only!

Open shkarupa-alex opened this issue 8 years ago • 7 comments

According to http://getbootstrap.com/css/#grid-responsive-resets .rows can have children: .clearfix .visible-*-* .hidden-*

shkarupa-alex avatar Apr 28 '16 16:04 shkarupa-alex

Also the same error appears if I use col-xl-* https://github.com/twbs/bootstrap/issues/19831

iyeldinov avatar May 02 '16 20:05 iyeldinov

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 avatar Jan 10 '17 21:01 MikeRankin

@MikeRankin Bootlint currently only supports Bootstrap 3.

cvrebert avatar Jan 11 '17 00:01 cvrebert

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 avatar Jan 22 '18 15:01 mischah

@mischah See #410.

Herst avatar Jan 22 '18 15:01 Herst

@Herst Thanks.

mischah avatar Jan 22 '18 15:01 mischah

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?

ae-bogdan avatar Jul 20 '18 08:07 ae-bogdan