7nik

Results 188 comments of 7nik

It's possible to manually encode, e.g. https://gist.github.com/joni/3760795 (though not sure how to be about the license) But I think then it will need more checking that it does all the...

I've looked for packages for converting string to UTF-8 and stopped on [utf8-bytes](https://www.npmjs.com/package/utf8-bytes) - it does only what we need, small, has MIT license, and I'm ok with its implementation....

what about using _control comments_? something like ```js let a = 1, b = 2, c = 3, d; // do not trigger for a and b $: { //...

I agree, I haven't seen the usage of comments to control compilers, only for warnings. But this way has a good readability and is quite clear. Another thing I was...

Here is my simplified case https://svelte.dev/repl/715f7a4749264a0e88aac699a9641dc4?version=3.46.4 In reality, I made a visualization of algorithms work on a graph that users can enter. Apparently, I need to clean up data before...

Any ETA? @Anidetrix are you even OK?

wow, it is still open I need to use the parameter multiple times, and it is a single parameter: `WHERE instr(lower(card.name), ?1) OR instr(lower(card.description), ?1)` It's stupid to wrap it...

It looks like type imports get sorted in reverse order of groups. E.g. I get this: ```ts import type { Paginator } from "../../utils/NMApi"; import type NM from "../../utils/NMTypes"; import...

add test cases to https://github.com/import-js/eslint-plugin-import/blob/main/tests/src/rules/order.js ? can try in a few days

To make it work in VSCode, but not just console, you need to set up the ESLint plugin - in the settings add `"svelte"` to the `eslint.validate` list. But still,...