2016-10-06 13:14:33 +03:00
|
|
|
/*
|
2017-01-06 21:11:18 +03:00
|
|
|
* Copyright (c) 2016-2017 Martin Donath <martin.donath@squidfunk.com>
|
2016-10-06 13:14:33 +03:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to
|
|
|
|
* deal in the Software without restriction, including without limitation the
|
|
|
|
* rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
|
|
|
|
* sell copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
|
|
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
|
|
|
|
* IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import path from "path"
|
|
|
|
import through from "through2"
|
|
|
|
import util from "gulp-util"
|
2017-01-19 01:23:45 +03:00
|
|
|
|
2016-10-06 13:14:33 +03:00
|
|
|
import { CLIEngine } from "eslint"
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
|
|
|
* Locals
|
|
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
const eslint = new CLIEngine
|
|
|
|
const format = eslint.getFormatter()
|
|
|
|
|
|
|
|
/* ----------------------------------------------------------------------------
|
2017-01-01 17:59:44 +03:00
|
|
|
* Task: lint JavaScript
|
2016-10-06 13:14:33 +03:00
|
|
|
* ------------------------------------------------------------------------- */
|
|
|
|
|
|
|
|
export default (gulp, config) => {
|
|
|
|
return () => {
|
|
|
|
return gulp.src(`${config.assets.src}/javascripts/**/*.js`)
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
.pipe(
|
2016-10-16 18:06:29 +03:00
|
|
|
through.obj(function(file, enc, done) {
|
2016-10-06 13:14:33 +03:00
|
|
|
if (file.isNull() || file.isStream())
|
2016-10-16 18:06:29 +03:00
|
|
|
return done()
|
2016-10-06 13:14:33 +03:00
|
|
|
|
|
|
|
/* Lint file using .eslintrc */
|
|
|
|
file.eslint = eslint.executeOnText(
|
|
|
|
file.contents.toString())
|
|
|
|
|
|
|
|
/* Correct file path */
|
|
|
|
file.eslint.results[0].filePath =
|
|
|
|
path.relative(process.cwd(), file.path)
|
|
|
|
|
2016-10-10 13:35:25 +03:00
|
|
|
/* Push file to next stage */
|
2016-10-06 13:14:33 +03:00
|
|
|
this.push(file)
|
2016-10-16 18:06:29 +03:00
|
|
|
done()
|
2016-10-06 13:14:33 +03:00
|
|
|
}))
|
|
|
|
|
|
|
|
/* Print errors */
|
|
|
|
.pipe(
|
2016-10-16 18:06:29 +03:00
|
|
|
through.obj(function(file, enc, done) {
|
2016-10-06 13:14:33 +03:00
|
|
|
if (file.eslint.errorCount || file.eslint.warningCount) {
|
|
|
|
// eslint-disable-next-line no-console
|
|
|
|
console.log(format(file.eslint.results))
|
|
|
|
}
|
|
|
|
|
2016-10-10 13:35:25 +03:00
|
|
|
/* Push file to next stage */
|
2016-10-06 13:14:33 +03:00
|
|
|
this.push(file)
|
2016-10-16 18:06:29 +03:00
|
|
|
done()
|
2016-10-06 13:14:33 +03:00
|
|
|
}))
|
|
|
|
|
|
|
|
/* Terminate on error */
|
|
|
|
.pipe(
|
|
|
|
(() => {
|
|
|
|
const errors = []
|
|
|
|
|
|
|
|
/* Gather errors */
|
2016-10-16 18:06:29 +03:00
|
|
|
return through.obj(function(file, enc, done) {
|
2016-10-06 13:14:33 +03:00
|
|
|
const results = file.eslint
|
|
|
|
|
|
|
|
/* Consider warnings as errors */
|
|
|
|
if (results.errorCount || results.warningCount)
|
|
|
|
errors.push(file)
|
|
|
|
|
2016-10-10 13:35:25 +03:00
|
|
|
/* Push file to next stage */
|
2016-10-06 13:14:33 +03:00
|
|
|
this.push(file)
|
2016-10-16 18:06:29 +03:00
|
|
|
done()
|
2016-10-06 13:14:33 +03:00
|
|
|
|
|
|
|
/* Format errors and terminate */
|
2016-10-16 18:06:29 +03:00
|
|
|
}, function(done) {
|
2016-10-06 13:14:33 +03:00
|
|
|
if (errors.length > 0) {
|
|
|
|
const message = errors.map(file => {
|
|
|
|
return file.relative
|
|
|
|
}).join(", ")
|
|
|
|
|
2016-10-10 13:35:25 +03:00
|
|
|
/* Emit error */
|
2016-10-06 13:14:33 +03:00
|
|
|
this.emit("error", new util.PluginError("eslint",
|
|
|
|
`Terminated with errors in files: ${message}`))
|
|
|
|
}
|
2016-10-16 18:06:29 +03:00
|
|
|
done()
|
2016-10-06 13:14:33 +03:00
|
|
|
})
|
|
|
|
})())
|
|
|
|
}
|
|
|
|
}
|