Richie Bendall

Results 140 comments of Richie Bendall

The option doesn't let you specify multiple directories to resolve plugins from so that it would be possible to specify the `node_modules` where `xo` is installed and the `node_modules` of...

https://github.com/eslint/eslint/issues/6237

> @Richienb I didn't see you comment above before I send #589, can you explain what case won't work with the `resolvePluginsRelativeTo` option? When `xo` could still be installed globally,...

We could just drop cjs since Node.js has supported ESM for about 3 years now.

> I doubt this is an option. As you cannot require() an ESM module from a CommonJS module. So this will be a major BC break. Well, yes that's the...

This appears to fix the problem: ```diff 'react/jsx-closing-bracket-location': [ 'error', { - nonEmpty: 'tag-aligned', + nonEmpty: 'line-aligned', selfClosing: false } ], ```

> Are you sure this is just not a bug/limitation in the rule? Yes, there is a limitation in the rule which means `tag-aligned` can't always give good alignment without...