mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-13 17:59:45 -04:00
Temporarily remove SASS linting
Trying to install gulp-sass-lint fails because some of its dependencies are not met: > npm install gulp-sass-lint > npm ERR! Darwin 15.3.0 > npm ERR! argv "/usr/local/bin/node" "/usr/local/bin/npm" "install" "gulp-sass-lint" > npm ERR! node v5.7.0 > npm ERR! npm v3.7.5 > > npm ERR! No compatible version found: lodash.upperfirst@^3.0.0 > npm ERR! Valid install targets: > npm ERR! 4.1.2, 4.1.1, 4.1.0, 4.0.2, 4.0.1, 4.0.0 > npm ERR! This commit removes it until we can work out what the problem is.
This commit is contained in:
@@ -103,10 +103,11 @@ gulp.task('watchForChanges', function() {
|
||||
});
|
||||
|
||||
gulp.task('lint:sass', () => gulp
|
||||
.src(paths.src + 'stylesheets/**/*.scss')
|
||||
.pipe(plugins.sassLint())
|
||||
.pipe(plugins.sassLint.format(stylish))
|
||||
.pipe(plugins.sassLint.failOnError())
|
||||
// Removed until gulp-sass-lint installs cleanly
|
||||
// .src(paths.src + 'stylesheets/**/*.scss')
|
||||
// .pipe(plugins.sassLint())
|
||||
// .pipe(plugins.sassLint.format(stylish))
|
||||
// .pipe(plugins.sassLint.failOnError())
|
||||
);
|
||||
|
||||
gulp.task('lint:js', () => gulp
|
||||
|
||||
Reference in New Issue
Block a user