Excluded bourbon files from gulp-scss-lint
parent
a78094425f
commit
788f941b1c
|
@ -2,6 +2,7 @@
|
||||||
.trans-button {
|
.trans-button {
|
||||||
@extend %large;
|
@extend %large;
|
||||||
@extend %title;
|
@extend %title;
|
||||||
|
text-transform: uppercase;
|
||||||
&:hover,
|
&:hover,
|
||||||
&.active {
|
&.active {
|
||||||
@include transition (color .3s linear);
|
@include transition (color .3s linear);
|
||||||
|
@ -20,7 +21,6 @@
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
padding: 8px 40px;
|
padding: 8px 40px;
|
||||||
text-transform: uppercase;
|
text-transform: uppercase;
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
@include transition (background .3s linear);
|
@include transition (background .3s linear);
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,9 +83,11 @@ gulp.task "template", ->
|
||||||
.pipe(gulp.dest(paths.dist))
|
.pipe(gulp.dest(paths.dist))
|
||||||
|
|
||||||
gulp.task "scsslint", ->
|
gulp.task "scsslint", ->
|
||||||
gulp.src(paths.scssStyles)
|
gulp.src(paths.scssStyles, '!app/styles/bourbon/**/*.scss')
|
||||||
.pipe(cache("scsslint"))
|
.pipe(cache("scsslint"))
|
||||||
.pipe(scsslint({config: "scsslint.yml"}))
|
.pipe(scsslint({
|
||||||
|
config: "scsslint.yml"
|
||||||
|
}))
|
||||||
|
|
||||||
gulp.task "sass", ->
|
gulp.task "sass", ->
|
||||||
gulp.src(paths.sassStylesMain)
|
gulp.src(paths.sassStylesMain)
|
||||||
|
|
Loading…
Reference in New Issue