Gonzalo Chumillas

Results 13 issues of Gonzalo Chumillas

Hola. Primero quería felicitarte por el proyecto de meneame. Y segundo, creo que sería interesante poner una opción para ocultar las noticias que no deseas ver. Como por ejemplo la...

I would suggest implementing a `n2s-navbar` component. Thanks so much for your package. It is a great work, even though it is still not complete.

/** - Look at my horse, my horse is amazing. - - @param DOMNode $node DOMNode object - @return boolean */ The generated documentation creates a link for the DOMNode...

bug

**Context:** The `parse` function is returning the errors as `any[]` type: ```d.ts // src/index.d.ts export function parse(value: any, schema: T): [Value, errors: any[]] ``` which provides little information about the...

enhancement
good first issue

The `required` attribute is confusing. For example: ```js // always outputs { data: '' }, no matter if required is false or true console.log({ data: sf.fix(undefined, sf.string()) }) console.log({ data:...

good first issue
question

### Describe the feature v-analyzer doesn't recognize any artifacts defined in this file: https://github.com/vlang/v/blob/master/vlib/js/dom/dom.js.v it would be nice to include this library. ### Use Case I'm currently developing a web...

### Describe the feature Simply add a flag to not require explicit use of `mut`: ```bash v --disable-explicit-mutability main.v ``` ### Use Case - **Cascading propagation:** Changing the mutability of...

### Describe the bug Do not expose internal implementation details to the end-user of a library. Follow discussion here: https://github.com/vlang/v/discussions/24718 ### Reproduction Steps Write a small library: ```v module my_library...

Bug

### Describe the bug This gitignore rule (`!*.*`) prevents us from ignoring local files: https://github.com/vlang/v/blob/master/.gitignore#L10 For example, I usually ignore all "test.txt" files, as I often use them to add...

Bug

### Describe the bug Code: https://play.vlang.io/p/104cca0a8c ```v type Type6 = Type7 | int type Type7 = Type6 | string struct Foo { name Type7 } ``` ### Reproduction Steps Run...

Bug
Unit: Checker