nbscala
nbscala copied to clipboard
Cannot load projects under src folder
My work folder is src (as in $HOME/src/, like the linux kernel is in /usr/src/); unfortunately your check in SBTProjectType.isSBTProjectDir() checks that a project folder is not a subfolder of any src folder.
We need to either disable that check, or enhance it so that the such a "src" path component is part of a project (not any stray src path name). On my fork I have disabled it - but why is that check in place anyway?
After running the plugin with the "src" check disabled I understood why that check was in place. I changed the implementation and will submit a pull request.