-
Another quick issue: you mentioned in the README that this had editor type safety that did not require a compile every time there is a change. I'm using VS Code and in order for it to have any type ch…
-
Dear authors,
First of all great work on this extension.
I was looking at the generated C# code from sqlc and thought it would be great if it could be used with dapper.
Instead of instantia…
-
The clear command's documentation in both guides lacks important safety details. There's no mention of confirmation requirements or safeguards for this destructive operation, and the Developer Guide s…
-
Currently, `State` and `Computed` are defined as standalone classes within the `Signal` namespace:
```ts
interface Signal {}
namespace Signal {
class State {}
class Computed {}
}
```
I…
-
The complete error message is as follows:
Warning:
Unable to load the following plugins:
libio_e57.so: libio_e57.so does not seem to be a Qt Plugin.
Cannot load library /data2/xxx/.con…
-
As far as I get it, a pipe always uses the same data type, and just transfers an instances. Why does it only return `Object` on `removeLast`? https://github.com/teetime-framework/TeeTime/blob/94c77030…
-
In `sbcl`, with high safety settings `(sb-ext:restrict-compiler-policy 'safety 3 3)`, then `(ql:quickload "smackjack-demo")` fails to load and run the demo, with error message:
unknown type spe…
-
Throughout the project, there are lots of references to "string". This is great for a quick start, but leads to possible mistakes.
For example a `Hash` has the same type as a `PrivateKey`, even if th…
luxbe updated
7 months ago
-
There are some patterns that lead to degraded type-safety.
We should review our codebase, especially things added in electra, for these types of patterns and refactor if possible.
Ideally we can m…
-
Right now it's dangerously easy to have inconsistence between schema type and TS type in class definition:
```ts
class Test {
@Field(() => [Author]) // wrong item type
actors: Actor[];
…