mirror of
https://github.com/monkeytypegame/monkeytype.git
synced 2025-02-22 13:53:04 +08:00
reverting path change
This commit is contained in:
parent
036e7d80cc
commit
df2d10f447
1 changed files with 2 additions and 2 deletions
|
@ -8,14 +8,14 @@ const JSONValidation = require("./scripts/json-validation");
|
|||
const eslintConfig = "../.eslintrc.json";
|
||||
|
||||
task("lint", function () {
|
||||
return src(["./frontend/src/ts/**/*.ts"])
|
||||
return src(["./src/ts/**/*.ts"])
|
||||
.pipe(eslint(eslintConfig))
|
||||
.pipe(eslint.format())
|
||||
.pipe(eslint.failAfterError());
|
||||
});
|
||||
|
||||
task("lint-json", function () {
|
||||
return src("./frontend/static/**/*.json")
|
||||
return src("./static/**/*.json")
|
||||
.pipe(eslint(eslintConfig))
|
||||
.pipe(eslint.format())
|
||||
.pipe(eslint.failAfterError());
|
||||
|
|
Loading…
Reference in a new issue