Commit 0882757e authored by hyeryung's avatar hyeryung

-

parent 0c95e8f9
Pipeline #18813 failed with stages
in 1 minute and 46 seconds
'use strict'
const stylelint = require('gulp-stylelint')
const vfs = require('vinyl-fs')
module.exports = (files) => (done) =>
vfs
.src(files)
.pipe(stylelint({ reporters: [{ formatter: 'string', console: true }], failAfterError: true }))
.on('error', done)
...@@ -36,7 +36,6 @@ ...@@ -36,7 +36,6 @@
"gulp-eslint": "~6.0", "gulp-eslint": "~6.0",
"gulp-imagemin": "~6.2", "gulp-imagemin": "~6.2",
"gulp-postcss": "~8.0", "gulp-postcss": "~8.0",
"gulp-stylelint": "~13.0",
"gulp-uglify": "~3.0", "gulp-uglify": "~3.0",
"handlebars": "~4.7", "handlebars": "~4.7",
"highlight.js": "9.18.3", "highlight.js": "9.18.3",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment