Get the lines of code in your JetBrains IDE (quick)
Some stats about a project are always interesting. There used to be an IntelliJ plugin offering exactly that, but unfortunately, it seems like it is not actively maintained any longer. A quick and elegant solution on Macs and Linux devices is running the following command from your project root: find . -name '*.' | xargs wc -l

Some stats about a project are always interesting. There used to be an IntelliJ plugin offering exactly that, but unfortunately, it seems like it is not actively maintained any longer.
A quick and elegant solution on Macs and Linux devices is running the following command from your project root:
find . -name '*.' | xargs wc -l