Build server prototype (integration with GitHub / NuGet / etc)
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
"use strict";
|
|
|
|
|
|
|
|
import { CLIEngine } from "eslint";
|
|
|
|
import { join } from "path";
|
|
|
|
import settings from "../../settings";
|
|
|
|
|
|
|
|
const cli = new CLIEngine({ configFile: settings.eslintBrowserConfig });
|
|
|
|
|
|
|
|
const errorSeverity = 2;
|
|
|
|
|
|
|
|
export default ((params, processor) => () => {
|
|
|
|
const filePath = join(processor.context.exported, params.filename);
|
|
|
|
const result = cli.executeOnFiles([filePath]);
|
|
|
|
|
|
|
|
processor.onInfo(`ESLinted ${params.filename}`);
|
|
|
|
|
|
|
|
result.results.forEach((subresult) => {
|
|
|
|
subresult.messages.forEach((message) => {
|
|
|
|
const messageText = `${params.filename}:${message.line},${message.column} (${message.ruleId}) ${message.message}`;
|
|
|
|
|
|
|
|
if (message.fatal || message.severity === errorSeverity) {
|
|
|
|
processor.onError(messageText);
|
|
|
|
} else {
|
|
|
|
processor.onWarn(messageText);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
processor.done();
|
|
|
|
}) as Task;
|