fixed linting issue in the watch task

This commit is contained in:
Miodec 2022-09-22 12:54:52 +02:00
parent bf5a19077a
commit 0243be483d

View file

@ -8,7 +8,7 @@ const JSONValidation = require("./scripts/json-validation");
const eslintConfig = "../.eslintrc.json";
task("lint", function () {
return src(["./src/ts/**/*.ts"])
return src(["./frontend/src/ts/**/*.ts"])
.pipe(eslint(eslintConfig))
.pipe(eslint.format())
.pipe(eslint.failAfterError());