Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 0 additions & 43 deletions .sass-lint.yml

This file was deleted.

20 changes: 1 addition & 19 deletions Gruntfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ module.exports = (grunt) ->
"eslint:all"
"jsonlint:all"
"stylelint"
"sasslint:all"
"lintspaces:all"
]
)
Expand Down Expand Up @@ -259,14 +258,6 @@ module.exports = (grunt) ->
grunt.file.write(writeTo, JSON.stringify(pkg, null, 2));
)

@registerTask(
"linting"
"Initial build setup"
[
"sasslint"
]
)

@registerMultiTask(
"méli-mélo-build"
"Try to dynamically compile mélimélo",
Expand Down Expand Up @@ -1074,16 +1065,7 @@ module.exports = (grunt) ->
options: {
indent: "\t"
}
sasslint:
options:
configFile: ".sass-lint.yml"
all:
expand: true
src: [
"{sites,common,components,templates,design-patterns,wet-boew}/**/*.scss"
"!*-jekyll.scss"
"!node_modules"
]

lintspaces:
all:
src: [
Expand Down
1 change: 0 additions & 1 deletion common/scaffolding/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ h6, .h6 {

/* Forms */

// scss-lint:disable QualifyingElement
input[placeholder],
[placeholder],
*[placeholder] {
Expand Down
2 changes: 1 addition & 1 deletion components/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -134,9 +134,9 @@

/* Embedding a Fluid Survey */
.gc-fld-srvy-container {
-webkit-overflow-scrolling: touch;
height: 0;
overflow: hidden;
-webkit-overflow-scrolling: touch;
overflow-y: scroll;
padding-bottom: 70%;
position: relative;
Expand Down
4 changes: 2 additions & 2 deletions components/wb-chtwzrd/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -192,9 +192,9 @@

.wb-chtwzrd-container .header .title {
-webkit-box-orient: vertical;
-webkit-line-clamp: 2;
display: -webkit-box;
font-size: 19px;
-webkit-line-clamp: 2;
line-height: 1.35;
overflow: hidden;
padding: 6px 0;
Expand Down Expand Up @@ -402,9 +402,9 @@
width: 100%;
}
.wb-chtwzrd-container .conversation {
-ms-flex-positive: 1;
-webkit-box-flex: 1;
flex-grow: 1;
-ms-flex-positive: 1;
max-height: none;
min-height: 2em;
}
Expand Down
Loading