How to disable WebStorm semicolon check in Node.js?
I have tried the following method but they do not work:
use semicolon
We were also straggling with it all the time. To make our life easier we even commit idea styling file. To make it work for every team member.
Open setting/preferences => search by rule text => disable it.
Once you disabled this or any other rule. To stop it appear again you can add to .gitignore:
### Commit specific idea files
.idea/*
!.idea/inspectionProfiles
.idea/inspectionProfiles/*
!.idea/inspectionProfiles/Project_Default.xml
I didn't find any better way to configure it. So...