Gregory Jacobs
Gregory Jacobs
Looks like interpolations aren't parsed inside quoted strings such as those provided to `url()`. For instance: ```scss .my-bg { background: url("bg-#{$color}.gif"); } ``` The value node comes out as: ```js...
It would be very useful to have a method which resets the interactions that have been recorded on a mock object, so that verifyNoMoreInteractions() can be used more effectively. Consider...
In the file https://github.com/Wildhoney/ReactShadow/blob/master/src/core/index.js#L28, the `useEffect()` hook is used which makes the rendering of the shadow dom element asynchronous. Using `useLayoutEffect()` instead would make the rendering synchronous. `useEffect()` causes a...
# 🐞 bug report ### Affected Rule Seemingly any rule that executes `run_node` In my particular case, `ts_project` is causing this error, but I get the same error with other...
**Describe the bug** Trying to add a property assignment to an object literal which exists inside of a CallExpression, but seems the formatting gets an extra level of indentation when...
**Describe the bug** Version: 9.1.0 Hey @dsherret. I'm getting a weird formatting issue when trying to add some whitespace before a `JsxAttribute` node. I'm trying to get a new attribute...
To replace the current RegExp URL parser, which is susceptible to ReDoS problems with long/degenerate strings. To-Do: - [x] Parse URIs which use a TLD (ex: `google.com`) - [x] Parse...
As in #76, an '&' for an HTML character entity at the end of a URL causes Autolinker to include the '&' character in the URL (such as `google.com ` linking...
Can get a weird build error when using ng-packagr on an Angular codebase (Angular 6 with CLI 6.0.8) that doesn't have type annotations on function parameters. Figure this would be...