Will Dixon

Results 54 comments of Will Dixon

@austinjones I would love Windows support. I have no experience in programming terminal emulation/multiplexing but many years of programming experience (mainly cloud infrastructure and networking). Is there some place you...

@RonQedit Not sure I get what you are asking? Do you have an example?

I think I follow. Do you want an option to switch which displays first? Currently, it is options than the question. But you want question then option. Am I following?

As you mentioned, the question and the ask feature are pretty tightly coupled. This package was one of my first GoLang packages and I wish I could rewrite it without...

I didn't see these in XDG standard? Where do you see them? I know Desktop isn't a thing for servers that don't have a window manager.

I like the idea of being explicit over implicit. I agree with Idez in this scenario, magic configs cropping up is not good. The reason why go.mod is allowed when...

I am going to add the $gomodname variable in as I have a few other issues that require additional variables. That will be in the v2.2.0 release

Don't see the need to copy configs. A file can match multiple rules https://github.com/OpenPeeDeeP/depguard/blob/6a315f2326b2084d60c0a056bcafa10d1e9f5bd7/settings_test.go#LL602C1-L606C4 ```yaml rules: global: files: - $all allow: # allowed packages deny: # denied packages test: files:...

I do see the flaw in the code. It does match multiple list, but each list is checked independently of each other, so file has to pass all rule sets...

https://github.com/OpenPeeDeeP/depguard/blob/6a315f2326b2084d60c0a056bcafa10d1e9f5bd7/depguard.go#LL72C3-L88C4 Relevant code to above comment... Notice that it checks if it is allowed in each list, and if it fails throws a lint error.