midnight
midnight

Reputation: 3412

Port Eclipse Problems view configuration to IDEA/Android studio

I'm using Intellij IDEA/Android Studio.

I was asked not to make any commits unless my code doesn't trigger any warnings in Problems View of Eclipse IDE.

So, is there any quick way to port Eclipse's analysis configuration to IDEA?

Thanks.

Upvotes: 3

Views: 246

Answers (1)

Javaru
Javaru

Reputation: 31936

There is not. There is the Eclipse Code Formatter third party plug-in for portng over code formatting definitions. Pehaps you can contact that developer and see if he would add problems/inspections definition syncing. Until then, I see two options for you...

  1. Configure your IDEA inspections so they match the team's Eclipse settings. This of course would require some time to initially set up. But I think in the end, it's the best solution.
  2. IDEA can export to files in eclipse format. As part of that it can keep its configuration linked to the eclipse files. This way you could pop over to eclipse to check for problems prior to committing.

Upvotes: 5

Related Questions