mamot.fr is one of the many independent Mastodon servers you can use to participate in the fediverse.
Mamot.fr est un serveur Mastodon francophone, géré par La Quadrature du Net.

Server stats:

3.3K
active users

#linter

0 posts0 participants0 posts today

Une sorte de linter pour PHP. Cet outil analyse votre code et vous permet de détecter certains problèmes sans même avoir à l'exécuter.

L'un des aspects intéressant c'est l'approche par niveaux (*levels*) qui permet de choisir son niveau d'*agressivité*. Vous pouvez commencer au level 0, corriger les soucis "faciles", puis augmenter à mesure que votre code gagne en qualité et en robustesse.

🔗 phpstan.org/

phpstan.orgFind Bugs Without Writing Tests
#PHP#linter#analyse

If I want to create a Linter/Fixer to enforce some rules like class/file naming, folder structure, code formatting for Laravel, what would be the best tool to built upon? PHP-CS-Fixer, Rector, Pest? I feel like they all have some overlapping features for this.

I know Tighten's Tlint but seems like they wrote their tool from scratch instead of using an existing library.