File tree Expand file tree Collapse file tree 3 files changed +32
-4
lines changed
Expand file tree Collapse file tree 3 files changed +32
-4
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "parserOptions" : {
3+ "ecmaVersion" : 6 ,
4+ "sourceType" : " module"
5+ },
6+ "extends" : " eslint:recommended" ,
7+ "env" : {
8+ "browser" : true
9+ },
10+ "rules" : {
11+ "strict" : [2 , " global" ],
12+ "block-scoped-var" : 2 ,
13+ "consistent-return" : 2 ,
14+ "eqeqeq" : [2 , " smart" ],
15+ "guard-for-in" : 2 ,
16+ "no-caller" : 2 ,
17+ "no-extend-native" : 2 ,
18+ "no-loop-func" : 2 ,
19+ "no-new" : 2 ,
20+ "no-param-reassign" : 2 ,
21+ "no-return-assign" : 2 ,
22+ "no-unused-expressions" : 2 ,
23+ "no-use-before-define" : 2 ,
24+ "radix" : [2 , " always" ],
25+ "indent" : [2 , 2 ],
26+ "quotes" : [2 , " double" ],
27+ "semi" : [2 , " always" ]
28+ }
29+ }
30+
Original file line number Diff line number Diff line change 1616 "dependencies" : {
1717 "purescript-effect" : " ^v4.0.0" ,
1818 "purescript-maybe" : " ^v6.0.0" ,
19- "purescript-prelude" : " ^v6.0.0"
19+ "purescript-prelude" : " ^v6.0.0" ,
20+ "purescript-web-events" : " ^v4.0.0"
2021 }
2122}
Original file line number Diff line number Diff line change @@ -17,6 +17,3 @@ foreign import origin :: MessageEvent -> String
1717foreign import lastEventId :: MessageEvent -> String
1818
1919foreign import ports :: MessageEvent -> Array MessagePort
20-
21- -- source :: WindwProxy | MessagePort | ServiceWorker
22- -- ports :: Array MessagePort
You can’t perform that action at this time.
0 commit comments