Joe Lencioni
Joe Lencioni
We could generalize the ignore prefixes option.
I wonder if we could generalize it in a way that would allow us to also handle aliases like `"cx": "classnames"`. Not sure about the naming, but maybe something like:...
Another possibility would be adding a flag of some sort to specify the format of `goto`. e.g. `goto --format=json`
Yeah I think this happened during initial startup and filling up the cache. After waiting long enough it seems to work okay now. FWIW, my DB is now ~15 MiB....
It's an interesting thought, but I don't think we really need to do this. There is [an eslint plugin that will tell you about missing package dependencies](https://github.com/benmosher/eslint-plugin-import/blob/master/docs/rules/no-extraneous-dependencies.md), and I think...
You could probably even add a little code to your config that reads your .gitignore file and populates the excludes array.
I agree that it is important that paths are consistent. I'm not entirely convinced about the benefits of `/absolute/paths`. I think it might be safer, but it will add a...
And with symlinks, I'm also not entirely sure about that because if you are writing some configuration based on the location of the symlink, you need to match on the...
This sounds like a pretty good strategy. I think we also need to look only at import statements that are at the top level, since `require` can be used within...
Shebang for node scripts is another case I've run into recently. ``` js #!/usr/bin/env node ```