I'm a new vim user. I've been using the vim motions for 2+ years in Intellij. I use intellij at my work. But for my personal projects, i've been using Lunarvim.
What I've realised, I can get in the zone much faster when using neovim. Instead of Intellij. I think if I get to the point that I have my own vim configuration, it would feel like something really personal. I use Lunarvim & Zellij and it's awesome.
I'm trying to write a static analyzer for PHP. It's written in RUST and it's a personal project of mine to learn rust and also make a FAST static analyzer for PHP projects that are big. I started with this project because the current static analyzers in the PHP ecosystem are slow.
It would be nice if there were people that would like to contribute. If you want to learn rust and you have PHP experience you are welcome to help.
The project is it early stages. Right know the focus is on writing the checks that are needed. The current checks that are implemented are:
- Detect when the cyclomatic complexity of a method is too high. The current threshold is 10.
- Extending undefined classes.
- Having a try/catch with an empty catch that doesn't do anything.
- A method that has more than five parameters.
- Methods without modifiers(private, public & protected).
- Classes that start with a lowercase.
- Check if a method exists when called inside another method.
- Methods that return a value without defining a return type.