ilkecan

Results 16 comments of ilkecan

I think this should be disabled by default if merged. nixpkgs is a single repository but there are countless other repositories that have Nix code inside them. There could be...

The number of arguments should be configurable rather than hardcoding 6, if this is accepted.

> When I try `(or_ isDirectory (matchExt "md"))`, the output includes a bunch of empty directories (i.e. the directories that have no Markdown files). This should work and works for...

Compare yours to below ```nix src = nix-filter { root = ./.; exclude = [ .github ci .travis.yml ... ]; }; ``` It is shorter and doesn't contain any visual...

@nerdypepper For a snippet like this: ``` nix let f = value: if then else ; in f ``` The below is a table that shows the evaluation result when...

> ... I no longer commit nix files by accident because flakes made me do a `git add`. `-N` (`--intent-to-add`) git option can be used to avoid this.

I will look into this. Thanks for the pointers.

I realized it is already possible to disable a specific observation using the `ignore` variable: ```toml # .stan.toml ignore = [ { id = "OBS-STAN-0006-NO6o1e-42:26" }, { id = "OBS-STAN-0101-NO6o1e-11:12"...

How about something like this ``` SCRIPT="$(readlink -f ./node_modules/.hooks/preinstall)" package_dirs="$(find ./node_modules -type f -name "package.json" | xargs --no-run-if-empty dirname)" while read package_dir; do export npm_package_name="$(echo "$package_dir" | awk -F'/' '{...