Ville Skyttä
Ville Skyttä
In my view that flag is `-s` (or choosing not to use it) -- it already simplifies a bunch of other things that aren't wrong either. Some might be more...
I ran the above plus `$label: return $*_` against all repos, results: ```shellsession $ wc -l labels.txt 204 labels.txt $ grep -c '^[A-Z][a-z]' labels.txt 62 $ grep -Ec '^[^a-z]+$' labels.txt...
:+1: to this. Although not explicitly mentioned, I'm assuming the issue is against the oas ruleset. An implementation wrinkle is that checking `required` against `properties` is not enough, `additionalProperties` and...
Please feel free to push to this branch to help complete it. WIP/things to consider at least: - Support for other OS's besides usual Unixy XDG ones - Relation to...
I'd steer clear from adding anything to `ExecutableDirs` that aren't dirs from which executables without a path are searched from. They don't work the way it's reasonable to assume they...
Ah, found a useful looking reference: https://docs.microsoft.com/en-gb/windows/win32/shell/app-registration#finding-an-application-executable "App Paths" doesn't seem like something that would fit in the concept of `ExecutableDirs` though. But the current working dir and the `Windows`...
Thanks for considering. I cannot say I personally agree with having such an option, I don't recall ever seeing such a thing anywhere. While I can see it could theoretically...
One correction: I've found that there actually **is** a `~/.tool-versions` around and in effect after doing e.g. a `asdf global goenv 1.17.8` (with contents `golang 1.17.8`).
$ asdf current; go version direnv system /home/scop/.tool-versions golang 1.17.8 /home/scop/.tool-versions perl ______ No version is set. Run "asdf perl " go version go1.17.8 linux/amd64 $ env ASDF_GOLANG_VERSION=1.17.8 asdf exec...
I believe `GOROOT` and `GOPATH` are set as result of `use asdf`. Anyway, adding the `unset`s before `use asdf` does not seem to make a difference. But I'll try to...