-
Hi! Any chance to generate more strict types when max\min items are defined?
**Example input scheme:**
```
point:
title: Point
maxItems: 2
minItems: 2
…
-
## Is your feature request related to a problem? Please describe.
At present, there is minimal checking of the user provided input data before proceeding with fitting a model. For example:
```pyth…
-
I've hit this in https://github.com/NixOS/nixops/pull/1048.
It's reproducible with the following steps:
```nix
# output.nix
{ pkgs, config, lib, name ? "default-output", ... }:
with lib;
{
op…
-
Following EdenTreaty sample from docs:
```
// server.ts
import { Elysia, t } from 'elysia'
const app = new Elysia()
.get('/', () => 'Hi Elysia')
.get('/id/:id', ({ params: { id } }) =>…
-
In my console, I received the following warning:
Warning: findDOMNode is deprecated in StrictMode. findDOMNode was passed an instance of InputMaskChildrenWrapper which is inside StrictMode. Instead…
-
## Problem
I like being super strict with my types. if i have a users table and an email field, i like protecting that column by using a dedicated `Email` type, rather than just pure `string`. this…
-
Hello,
Strict-rules require all class properties to have typehint, although the ones that are specified in the constructor are perfectly inferred by the IDE.
Maybe we could do the property typehint …
-
I have done a comparison of Joi and Yup core schemas. I have noticed a few things :
- Yup.string accepts all types and people don't expect that at start. It would be cool if it would be stricter in t…
-
ZenScript doesn't require a typename for declaring a variable, but is still very strict with types. However, the documentation sometimes does not describe the types accurately.
I suggest adding a g…
-
Hi there,
I defined the following function in my gdextension:
```
#[func]
fn add_two(&mut self, a: f32) -> f32{
println!("a:{}",a);
return a + 2.0;
}
```
The…