Skip to content

Commit e392c71

Browse files
committedJul 15, 2024·
refactor: moved much code to typescript
1 parent f765b00 commit e392c71

File tree

131 files changed

+26146
-4516
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

131 files changed

+26146
-4516
lines changed
 

‎eslint.config.mjs

+3
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,9 @@ export default tseslint.config(
167167
"@typescript-eslint/no-unsafe-argument": "off",
168168
"@typescript-eslint/no-unsafe-assignment": "off",
169169
"@typescript-eslint/no-unnecessary-condition": "off",
170+
"@typescript-eslint/no-invalid-void-type": "off",
171+
"@typescript-eslint/no-unsafe-return": "off",
172+
"@typescript-eslint/no-non-null-assertion": "off",
170173
"@typescript-eslint/restrict-template-expressions": [
171174
"error",
172175
{ allowNumber: true },

‎package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
"@eslint/js": "^9.6.0",
2323
"@types/eslint__js": "^8.42.3",
2424
"@types/node": "^20.14.10",
25-
"@vitest/browser": "^2.0.1",
25+
"@vitest/browser": "^2.0.2",
2626
"eslint": "^9.6.0",
2727
"eslint-plugin-jsdoc": "^48.5.2",
2828
"globals": "^15.8.0",
2929
"lefthook": "^1.7.1",
3030
"tsconfig": "workspace:latest",
3131
"typescript": "^5.5.3",
3232
"typescript-eslint": "^8.0.0-alpha.41",
33-
"vitest": "^2.0.1"
33+
"vitest": "^2.0.2"
3434
}
3535
}

0 commit comments

Comments
 (0)
Please sign in to comment.