Titus
Titus
Ohhh, I thought stuff was local. I’m guessing global mode interferes with the normal state of things. Why are all things global?
There’s no good way of doing this, I think, but you’re the first to raise an issue about it after it existing for a while. And probably because of global...
Yes, or even point from your config file to plugins in some other directory: ```js // ~/.remarkrc { "plugins": [ "./some/place/node_modules/remark-preset-lint-recommended", ["./some/place/node_modules/remark-lint-list-item-indent", false] // a ["./some/place/node_modules/remark-preset-lint-recommended/node_modules/remark-lint-list-item-indent", false] // or b...
Hmm. 🤔 Does `./.npm-packages/lib/node_modules/remark-lint-maximum-line-length` exist?
No, it’s exactly because global mode doesn’t dedupe! You can use global mode, but in that case, when reconfiguring plugins, you need to point to the deeper plugin! Global mode...
So here’s what’s going on: 1. `remark-lint-maximum-line-length` is not `remark-preset-lint-markdown-style-guide/node_modules/remark-lint-maximum-line-length` 2. The former is turned off, so it isn’t loaded 3. The latter still runs When I’m talking about deduping...
> I would suggest editing the title of this issue to make it more obvious the problem is related to globally installed plugins. Done, thanks for suggesting! > Also, I...
:+1: Maybe useful: https://github.com/plantain-00/type-coverage
I’m also a fan of xo / unicorn and would prefer to keep it. While it can be quite annoying at times, it does a ton of things that are...
I seem to be able to access types with e.g. `DefaultTreeAdapterMap['documentFragment']`, though things like attributes and location are behind something like `import('parse5/dist/common/token.js').Attribute`, I wonder if there’s an easier way to...