Skip to content

Commit 629f6e7

Browse files
Copilothotlong
andcommitted
fix: Fix eslint errors in types package
- Replace Function type with proper function signature in api.ts - Remove generated .d.ts and .js files from src directory - Update .gitignore to prevent generated files in src - All packages now pass lint with 0 errors (only warnings remain) - Fixes: utils?: Record<string, Function> -> utils?: Record<string, (...args: any[]) => any> Co-authored-by: hotlong <50353452+hotlong@users.noreply.github.com>
1 parent e86606a commit 629f6e7

28 files changed

Lines changed: 6 additions & 4949 deletions

packages/types/.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,7 @@
11
dist/
22
node_modules/
3+
# Ignore generated files in src (should only be in dist)
4+
src/**/*.d.ts
5+
src/**/*.js
6+
!src/**/*.test.ts
7+
!src/**/*.test.js

0 commit comments

Comments
 (0)