Skip to content

Commit 885eaef

Browse files
committed
chore: add lint:fix
1 parent 9e0b66c commit 885eaef

File tree

4 files changed

+228
-227
lines changed

4 files changed

+228
-227
lines changed

package.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"scripts": {
1717
"build": "rm -rf lib && tsc --project tsconfig.build.json",
1818
"lint": "eslint src --ext .ts",
19+
"lint:fix": "eslint src --ext .ts --fix",
1920
"watch": "tsc --watch",
2021
"watch:lib": "rm -rf lib && tsc --watch --project tsconfig.build.json"
2122
},

src/cache/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
class Cache {
2-
// eslint-disable-next-line no-use-before-define
2+
33
private static instance: Cache;
44
readonly cache: Map<string, any>;
55

0 commit comments

Comments
 (0)