Skip to content

Commit

Permalink
Initial conversion
Browse files Browse the repository at this point in the history
- All the types work out (not as bad as I expected)
- Cancellation has been disabled until a new API is worked out

references #1018

[ci skip]
  • Loading branch information
jason0x43 committed Feb 14, 2020
1 parent b6f0068 commit b8db2df
Show file tree
Hide file tree
Showing 62 changed files with 967 additions and 1,544 deletions.
7 changes: 6 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,11 @@
// TODO: turn this back on when we're ready to fix all the usages
"@typescript-eslint/no-non-null-assertion": "off",
// The whole point of ts-ignore is to purposefully ignore errors...
"@typescript-eslint/ban-ts-ignore": "off"
"@typescript-eslint/ban-ts-ignore": "off",
// It's OK to return values and ignore them
"@typescript-eslint/no-misused-promises": [
"error",
{ "checksVoidReturn": false }
]
}
}
3 changes: 1 addition & 2 deletions src/common/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
export { default as Task } from './lib/Task';
export * from './lib/Task';
export * from './lib/cancel';

export { default as Evented } from './lib/Evented';
export * from './lib/Evented';
Expand Down
Loading

0 comments on commit b8db2df

Please sign in to comment.