Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Any decent linter will catch unused imports. Make them install one if they refuse to use an IDE.
I use VSCode most of the time because I mostly write Python and PyCharm is way overkill for that.
Installed the Python extension and made sure to install pylint in my virtualenv, and I have all of the most important features of an IDE without the bloat. -
why use a bloated piece of software that has a quadzillion of Features no one needs that takes as long to startup as long as I need to make a cup of coffee?
Also speaking of .editorconfigs: last time I checked, IntelliJ Products used to save their data into some xml files in the .idea folder. -
R3ym4nn4325yJust add some git hooks on the server side or linting in your ci pipeline.
In combination with blocking master direct access/push thats a great way to keep shitty code out of your repo.
I've yet to see a developer use visual studio code in one of my projects instead of webstorm/intellij and not fuck up the code formatting in their first commits. Ffs use the damn editorconfig file people.
Also please use an ide that shows you warnings and unused imports I'm tired of cleaning this crap up
rant