Skip to content
This repository was archived by the owner on Oct 8, 2024. It is now read-only.

Commit a18f9bb

Browse files
Update eslint and fix as-test (#27)
1 parent 64c111f commit a18f9bb

File tree

8 files changed

+381
-416
lines changed

8 files changed

+381
-416
lines changed

src/.eslintrc.json

Lines changed: 0 additions & 24 deletions
This file was deleted.

src/as-test.config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"runOptions": {
1414
"runtime": {
1515
"name": "node",
16-
"run": "node ./tests/<name>.run.js"
16+
"run": "node ./build/<name>.run.js"
1717
}
1818
}
1919
}

src/eslint.config.js

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
// @ts-check
2+
3+
import eslint from "@eslint/js";
4+
import tseslint from "typescript-eslint";
5+
6+
export default tseslint.config(
7+
eslint.configs.recommended,
8+
...tseslint.configs.recommended,
9+
{
10+
// generated
11+
ignores: ["build/**"],
12+
},
13+
);

0 commit comments

Comments
 (0)