Bob Matcuk

Results 50 comments of Bob Matcuk

Sadly, no. But, I tried other versions in the Dockerfile I posted above (you can see the `git checkout 2.11` in the Dockerfile - I tried other versions there) and...

Hi @nexusstar, sorry for the slow reply. I just tested locally and both options seem to be working for me. If you run `:CocInfo`, do you see that stylelintplus has...

Hi @caifara - that error is coming from stylelint itself. Sounds like you either haven't created a configuration file, or stylelint can't find it. See this issue: https://github.com/stylelint/stylelint/issues/3625

Oh, interesting... do you have coc-css installed? If so, do you have `"scss.validate": false` in your `coc-settings.json`?

Have you tried running stylelint on the command line with this config to see if there are any errors? coc-stylelintplus just runs stylelint under-the-hood, so it'll work with any valid...

That's super annoying that they aren't the same error. In the go code, io/fs specifically uses path.ErrBadPattern, why does filepath create a different error instance instead of just using path.ErrBadPattern,...

Hi @ansrivas - doublestar doesn't support negation, but that could be an interesting feature. For the time being, you could accomplish it by using a very inclusive pattern with `Glob()`...

Hey @storyicon, that's not a bad idea. My original intent with this library was to implement a drop-in replacement for path.Match, filepath.Match, and filepath.Glob, so I didn't think to implement...

Oh, as for benchmarks: I don't have any benchmarks, but I'd welcome some. Are there other globbing libraries for go that support `**` to compare against? I'm not aware of...

To be clear, the tool you are using is giving you a cumulative sum of all allocations. In this example, doublestar is called in a tight loop - any allocation...