Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: migrate to typescript #296

Merged
merged 36 commits into from
Nov 20, 2019
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d521db8
build(prelude): migrate to typescript
raveclassic Aug 5, 2019
4e86056
build(disposable): migrate to typescript
raveclassic Aug 5, 2019
5665024
git
raveclassic Aug 6, 2019
c461f3c
build(core): migrate to typescript
raveclassic Aug 7, 2019
34c68f8
build(core): migrate to typescript // fix build
raveclassic Aug 8, 2019
8b07756
build(core): migrate to typescript // fix build
raveclassic Aug 8, 2019
017855d
build(core): migrate to typescript // fix eslint
raveclassic Aug 8, 2019
b34be98
postreview
raveclassic Aug 13, 2019
f16295b
postreview
raveclassic Aug 13, 2019
334d68c
remove vscode settings
raveclassic Aug 14, 2019
b8357ec
replace standard with eslint
raveclassic Aug 14, 2019
03440dc
update combine to ToStreamsArray
raveclassic Aug 14, 2019
1701b85
postreview
raveclassic Aug 19, 2019
6b27f04
postreview
raveclassic Aug 19, 2019
40695e3
postreview
raveclassic Aug 19, 2019
70a8b56
postreview
raveclassic Aug 19, 2019
61e5c54
fix curry3 typings
raveclassic Aug 19, 2019
1b24b9c
replace any with unknown
raveclassic Aug 21, 2019
7e516b1
replace bangs with casts and add todo comments
raveclassic Aug 21, 2019
7900b66
replace any with unknown
raveclassic Aug 21, 2019
32ad781
make Pipe abstract
raveclassic Aug 23, 2019
bbca980
fix some PropagateTask types
raveclassic Aug 23, 2019
9fb8503
simplify PropagateTask
raveclassic Aug 28, 2019
a4a65d2
remove DeferredSink
raveclassic Aug 28, 2019
a4b2b50
make IndexSink a named export
raveclassic Aug 28, 2019
cddc32c
remove Readonly
raveclassic Aug 28, 2019
23a9a0b
make active private
raveclassic Aug 30, 2019
e903032
style: space-before-function-paren
raveclassic Sep 2, 2019
1f2fc25
refactor: extract Sentinel interface
raveclassic Sep 2, 2019
4e29bea
refactor: hoist TestMulticastSource class
raveclassic Sep 2, 2019
808c7aa
style: add comment about cast
raveclassic Sep 2, 2019
8ef111a
style: postreview
raveclassic Sep 17, 2019
253909b
style: remove extra space
raveclassic Sep 17, 2019
6429390
feat: arrayLike
raveclassic Aug 19, 2019
5d638a3
test: associativity for concat
raveclassic Sep 20, 2019
5a3b2e3
Merge branch 'master' into typescript
raveclassic Nov 5, 2019
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"extends": "standard-with-typescript",
"parserOptions": {
"project": "./tsconfig.json"
},
"rules": {
"@typescript-eslint/array-type": "off",
"@typescript-eslint/explicit-member-accessibility": "off",
"@typescript-eslint/explicit-function-return-type": [
"error", {
"allowExpressions": true,
"allowHigherOrderFunctions": true
}
],
"@typescript-eslint/promise-function-async": "off",
"lines-between-class-members": "off",
"no-var": "error",
"no-void": "error"
}
}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ docs/_static
docs/_templates
lerna-debug.log
npm-debug.log
.rpt2_cache/
.vscode/
Loading