user72356

Results 18 issues of user72356

**Is your feature request related to a problem? Please describe.** In https://github.com/mapeditor/tiled/issues/1477, you implemented an improved object selection mechanism that ignores transparent pixels so that one can select objects positioned...

feature

**Is your feature request related to a problem? Please describe.** I maintain a script that frequently adds/removes all layers on a map. At this time I have to call addLayer()...

feature

Aren't `no-array-callback-reference` and `prefer-native-coercion-functions` contradictory in their intent? Consider the following: ```ts const idsAsNumber = idsAsString.map(id => Number(id)); ``` According to `prefer-native-coercion-functions` I should do: ```ts const idsAsNumber = idsAsString.map(Number);...

Are textures in FBX files supported? I made sure that the paths to the texture files were correct in the FBX, and they show up just fine in Autodesk FBX...

A few years ago there was a similar issue with React, and how to use Draggable in a technology that doesn't keep track of DOM changes. Blazor is the new...

I'm unable to align mathematical equations to the left of the page in markdown: ``` $$ sin⁡(α)={opposite \over hypotenuse}={h0 \over c}={h2 \over b} $$ ``` $$ sin⁡(α)={opposite \over hypotenuse}={h0 \over...

Issue https://github.com/mtxr/vscode-sqltools/issues/280 makes it clear that opening the results at the bottom of the screen is not an option due to limitations in VS code. Instead I would be happy...

feature request

It looks like `eslint-comments/no-use` isn't working at the moment (latest version of everything as of 11/22/2022). It produces no errors when I configure `"eslint-comments/no-use": "error"` and I use a disable-next-line,...

Sorry if I missed the option but I don't think there is one. Can we have a setting for opening brace placement in object literals? In the example below, I...

Is it possible to configure that type declarations should have their opening brace on the next line, just like `interfaceDeclaration.bracePosition`. If not, can you consider this as feature request? ```ts...