From 0243be483dfbe8326da0a5451ab3db5b2bea805e Mon Sep 17 00:00:00 2001 From: Miodec Date: Thu, 22 Sep 2022 12:54:52 +0200 Subject: [PATCH] fixed linting issue in the watch task --- frontend/gulpfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/gulpfile.js b/frontend/gulpfile.js index 07e5e0a5b..1f63a362d 100644 --- a/frontend/gulpfile.js +++ b/frontend/gulpfile.js @@ -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());