E050 - Herst/bootlint-ng GitHub Wiki
Note: Below is the original page from the Bootlint documentation, some of the info here might not apply to Bootlint-NG!
In Bootstrap v3, .form-groups do not support nesting.
Wrong:
<div class="form-group">
  ...
  <div class="form-group">
      ...
  </div>
</div>Right:
<div class="form-group">
    ...
</div>
<div class="form-group">
    ...
</div>