You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
how would be this app can show how many lines of code each method have and if it is a big method you can warn the developer, or correcting method and variable name according to naming convention ?
The text was updated successfully, but these errors were encountered:
Hi @toltarisa
thanks for the feedback, what you are talking about sounds more static analysis (regarding the lines of code) and a linter.
There are many tools in the JavaScript ecosystem that fulfil these requirements.
For instance, for static analysis I used Plato or sonarqube.
Instead, as linter I recommend eslint.
Micro-runner's goal is doing micro benchmarking, therefore after individuated an algorithm that smells, trying to isolate (if possible) and having metrics for guiding you toward an optimal solution.
I believe data is power, often we are too lazy or we accept that certain implementations should be done in a specific way because everyone is doing that.
In reality, there are certain situations where you need to target low-end devices with JavaScript and also a for loop could matter.
I hope it makes sense, let me know if this answers your recommendation.
how would be this app can show how many lines of code each method have and if it is a big method you can warn the developer, or correcting method and variable name according to naming convention ?
The text was updated successfully, but these errors were encountered: