Ryver
Ryver
Doesn't the "multiline" option on [function-paren-newline](https://eslint.org/docs/rules/function-paren-newline) along with the current "comma-dangle" implement [7.15](https://github.com/airbnb/javascript#functions--signature-invocation-indentation) correctly? If so, [this line](https://github.com/airbnb/javascript/blob/f5c14cae2ff58000cead98290b8ec4b54dda2f14/packages/eslint-config-airbnb-base/rules/style.js#L106) should be updated. Edit: I can open a PR, but I want...
@ljharb Done! If the PR is merged, it may still be a good idea to keep this issue open or open a new one. I assume [7.15](https://github.com/airbnb/javascript#functions--signature-invocation-indentation) is also supposed...
I ran into this problem today as well. The `exports` field in `package.json` just needs a `"types"` entry. Diff that solves the problem: ```diff diff --git a/node_modules/aws4fetch/package.json b/node_modules/aws4fetch/package.json index 4ea1e45..95842c7...
> I'm confused about why this is a problem suddenly – the `types` are declared – why does anything need to change here? Is it a TypeScript bug? In our...