Todor Andonov

Results 16 issues of Todor Andonov

## 🐛 Bug Report I have this component: ```jsx import React, { useState } from "react"; import { Modal } from "@ui-kitten/components"; import { TouchableWithoutFeedback, View } from "react-native"; function...

Once you use `.extend`, any JSDoc hints are lost. ```ts import { z } from 'zod'; const v1 = z.object({ /** this works */ userId: z.string(), }); const v2 =...

implements https://typescript-eslint.io/rules/consistent-indexed-object-style/

A-linter

Provide an option to format this: ```ts type Foo = { a: string; b: string; } ``` as: ```ts type Foo = { a: string; b: string; } ```

Hey, I love this plugin. It's so simple, yet effective. Is there a way to enable it for production builds as well? Thanks!

### Description ### Steps to Reproduce I've set up a [codepen](https://codepen.io/todor-a/pen/ZEdxZvK) with the reproduction. ### Expected Behavior All `last` stacks to be rounded. ### Actual Behavior Only the stack that...

bug

### Describe the bug I want to use `useQueries` to fetch `x` queries every time, and another `y` queries, whose count is not known at compile time. Here is a...

bug
help wanted
types

I'm having issues migrating away from jsdom to jest-fixed-jsdom in order to be able to use msw (I know that migrating away from jsdom altogether is best but this is...

Is it possible to implement a short cache to the resolved versions? My use case is that I work on a multi-repo project and the extension has to grab the...

```ts import { cloneDeep } from 'es-toolkit'; export class FetcherError extends Error { constructor(readonly innerError: Error) { super(innerError.message); } } console.log( cloneDeep( new FetcherError(new Error('some error')) ) ); ``` Fails...

p1: minor bug