bisubus
bisubus
Currently Skype url parameter is malformed: ``` https://web.skype.com/share?url=@t%0D%0A@u%0D%0A@d ``` There should be 2 parameters, url and text: ``` https://web.skype.com/share?url=@u&text=@t%0D%0A@u%0D%0A@d ```
I suggest to translate directive attributes to custom namespace instead of 'ng'. Using 'ng' in third-party extensions is unconventional, and I don't see it as a problem. The problem is...
I primarily use the tool for static analysis. Can `-l` be added to output the list? It is possible to get the list with `-v`, but it provides extra output.
Currently it's not possible to change a request more than once in beforeRequest hooks, this behaviour is enforced [here](https://github.com/sindresorhus/ky/blob/v0.28.6/source/core/Ky.ts#L261). Since this condition is hard-coded, it's impossible to change it without...
**I'm submitting a ...** (check one with "x") ``` [ ] bug report => Search github for a similar issue or PR before submitting [x] feature request => Please check...
That the rule expects a specific format makes it uncomfortable to use when you see it the first time, as opposed to e.g. TS `@ts-ignore` directive that allows to provide...
Currently the behaviour defined by built-in classes is not customizable: `TimeScaleStore`, `XAxis`, etc. The customization requires to either hijack into source files, or patch class instances through a chain of...
SSR problems
**Describe the bug** Differences in generated HTML on server and client cause a warning in Next.js: > react-dom.development.js:67 Warning: Prop `aria-controls` did not match. Server: "collapsible-content-1632766367544" Client: "collapsible-content-1632766370864" Currently it...
For `` tag and this router setup that is used on `/foo/` page: ``` const rootState = { name: 'root', url: '/', component: Root }; const barState = { name:...