Max Yankov

Results 41 issues of Max Yankov

I've only just discovered this package and tried to use it as in-place replacement for ESLint. However, although the package readme says that it supports all `@typescript-eslint` rules, they seem...

bug

## 📖 Documentation I want to incorporate fp-ts into my current project. However, in it, I routinely pass along data types from client to server and back via JSON, and...

It would be great if there was an option to make translations of blog posts to different languages. However, even hypothetically, there are questions about how such a feature would...

feature

Most importantly — this is not an attack on @mattphillips. Nobody's entitled to other person's labour, and open source maintainer ["is not my bitch"](https://psuvanguard.com/george-r-r-martin-is-not-your-bitch/). If he made a decision to...

I wanted to work on https://github.com/import-js/eslint-plugin-import/issues/2450, but decided to add tests for existing behaviour first, to ensure that subsequent work doesn't break it. I've copied over all existing tests that...

It would be very useful for `no-restricted-paths` rule to have an option to allow `import types` for a zone, as these imports are erased at compile time anyway.

enhancement
help wanted
typescript

Over the last few months of using pgtyped, I've ran into several bugs that look something like this: ```Typescript const createSomeThings = sql` INSERT INTO some_things (column_1, column_2) VALUES $$things(column1,...

enhancement

I have the following query: ```Typescript const checkBlacklist = sql` SELECT COUNT(*) > 0 FROM user_blacklist WHERE (user_id = $userID AND target_user_id = $targetUserID) OR (user_id = $targetUserID AND user_id...

bug

### Steps to reproduce In my db schema, I have the following table: ```sql CREATE TABLE public.countries ( id integer NOT NULL, iso3 character(3) COLLATE pg_catalog."default", CONSTRAINT countries_pkey PRIMARY KEY...

I tried to use `expect` method on the result of `CharacterCache.character` method, but turns out I can't, because the associated Error type doesn't require Debug trait: ```Rust error[E0599]: no method...