Open mausch opened 1 year ago
Hi @mausch !
It's not just geared towards Ruby and Elixir codebases, no.
unused doctor
is hinting at a warning around the number of tags unused
is finding (just 1) - it looks like Ctags may not be picking up tags. Can you check the tags file unused is finding and see if you can generate more tags?
Hi, this project looks very interesting! Just wondering if it's only meant to work on Rails/Phoenix code? I generated tags using universal-ctags on C# and Python projects but
unused
doesn't seem to find any unused code (there's obvious unused code that I introduced on purpose to test this).Maybe I'm misunderstanding what "unused code" means in the context of this tool?
For example given this Python code:
I get this output from
nix shell nixpkgs#universal-ctags nixpkgs#unused -c sh -c "ctags -R; unused"
:I was expecting it to find
xx=1
as unused code.