2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-20 20:00:36 +03:00

Apply at-mixin-argumentless-call-parentheses: always stylelint rule for v4 mixins

This commit is contained in:
Martijn Cuppens
2019-07-24 10:53:13 +03:00
committed by XhmikosR
parent d59aa2c702
commit 48e86c5796
28 changed files with 52 additions and 52 deletions
+3 -3
View File
@@ -1,14 +1,14 @@
// stylelint-disable declaration-no-important
@mixin float-left {
@mixin float-left() {
float: left !important;
@include deprecate("The `float-left` mixin", "v4.3.0", "v5");
}
@mixin float-right {
@mixin float-right() {
float: right !important;
@include deprecate("The `float-right` mixin", "v4.3.0", "v5");
}
@mixin float-none {
@mixin float-none() {
float: none !important;
@include deprecate("The `float-none` mixin", "v4.3.0", "v5");
}