Jack Russell

Results 10 issues of Jack Russell

Many front-end tools (babel, autoprefixer) use a projects [browserslist](https://github.com/browserslist/browserslist) definition as the target browsers. It would be great if this tool were able to tell me whether my transpiled bundles...

Hacktoberfest

### Description [`prefer-ternary`](https://github.com/sindresorhus/eslint-plugin-unicorn/blob/main/docs/rules/prefer-ternary.md#prefer-ternary-expressions-over-simple-if-else-statements) currently only supports > 'simple' if-else statements, where 'simple' means the consequent and alternate are each one line and have the same basic type and form. Would...

enhancement
help wanted

**Describe the bug** In the [Simple Sortable example](https://react-dnd.github.io/react-dnd/examples/sortable/simple) when a Card is dragged from one position to another and then outside the dropzone, the card will animate back to its...

I recently switched from connecting to my dev server using network drives to using network locations. - Windows 10 - I have a network location \\x\y - I have a...

### Reproduction example Note: unable to provide a codesandbox link due to the [inability to control the version of TypeScript used by the IDE](https://github.com/codesandbox/codesandbox-client/issues/942) ### Prerequisites 1. `[email protected]` 2. `@testing-library/[email protected]`...

bug
needs specification

**What**: Adding a new named export for `userEvent` **Why**: Allows users who use TypeScript 4.7+ with `moduleResolution` set to `Node16` to avoid configuring `esModuleInterop` to import the default CJS export....

### ⚙ Compilation target ESNext ### ⚙ Library ESNext ### Missing / Incorrect Definition According to the [MDN docs](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/NumberFormat/NumberFormat#style), when `style` is set to `currency`, then the `currency` property [must...

Bug
Help Wanted
Domain: lib.d.ts

## Requested Update It would be great if a [browserslist](https://github.com/browserslist/browserslist) config could be used to infer which ES version to check against Related issue: https://github.com/obahareth/are-you-es5/issues/64 ## Why Is This Update...

### Description A rule could be created for the Promise constructor executor function to require that the resolve callback is called. Example of incorrect code for this rule: ```ts await...

enhancement

```ts interface Dog { id?: string; name: string; } const dogs: Dog[] = [ { id: "spikey", name: "spike" }, { name: "spot" }, ] as const; export const Dogs...