KotlinIsland

Results 497 comments of KotlinIsland

True, then this should be just for literals and references that aren't using getters eg: ```ts const a = 1; a; ```

or just: ```py a: list[int,] ``` With `skip-magic-trailing-comma` nothing is changed.

Only issue I could see with this is if we ever wanted to cherry-pick changes from typeshed for a specific release/feature, but we could just make a branch in basedtypeshed...

This depends on KotlinIsland/basedtypeshed/issues/16

Can we add a test that checks that third-party stub packages are used instead of basedtypeshed.

As more based features have been added this has become higher priority

What about `dict` and `Protocol` literals? ```py a: {'a': int, 'b': str} = {'a': 1, str} def (a: Protocol[{'a': int, 'b': str}]): ... ```