Remco Haszing

Results 231 issues of Remco Haszing

The MDX support is based on microsoft/monaco-editor#3096, which hasn’t been merged yet. I suggest to wait for that before merging, as the language tokenizer may change in code review.

I’m interested in support for [MDX](https://mdxjs.com). I’ve already [created basic language support](https://github.com/microsoft/monaco-editor/pull/3096) to Monaco Editor. I fiddled a bit locally and tried adding the `mdx` key using same consifuration `javascript`...

The package uses commonjs, but it’s typed as if it contains faux ESM. This was problematic for people using `require` or the new `node16` module resolution.

Numbers are currently allowed, but they yield unexpected results ```js > const classNames = require('classnames') > classNames(0) // Falsy values are always filtered '' > classNames(42) // Stringified integers aren’t...

breaking change
types

In [Y024](https://github.com/johnpapa/angular-styleguide#style-y024) is stated that named functions should be used for callbacks. However, in all the examples unnamed functions are passed when chaining promises. I must say using named functions...

Angular 1

The following line breaks various bulma styles when `bulma` and `bulma-checkradio` are built using SASS https://github.com/Wikiki/bulma-checkradio/blob/c1323f8dd76ccfc26f57e7324892f7ed2c2ad5b2/src/sass/index.sass#L2 This import changes the CSS order, causing the build output CSS to prefer certain...

The following line breaks various bulma styles when `bulma` and `bulma-checkradio` are built using SASS https://github.com/Wikiki/bulma-slider/blob/ba0c40679d0427b84e221d853112a717b8bc691a/src/sass/index.sass#L2 This import changes the CSS order, causing the build output CSS to prefer certain...

When reading #46, I figured the dedent function should behave similar to Python's `textwrap.dedent` function. In Python's `textwrap.dedent` blank lines are ignored towards indentation count. ``` py >>> import textwrap...

It would be cool if there was an option to add a summary when all tasks finish, so it's immediately clear which scripts succeeded and which failed. The idea was...

The JSX dev runtime exposes more debugging information to users. For example, React exposes positional information through React Devtools. Although #2035 started off as an issue to support the `__source`...