Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IntelliJ disable code analysis (light bulb)

Is there a way to disable code analysis (the light bulb) in IntelliJ? I really don't care about code improvement suggestions as I'm viewing some third party code. I've already unchecked everything single feature in Project Settings -> Inspections.

I'm using IntelliJ 10.5 to edit ActionScript code.

like image 824
Steve Kuo Avatar asked Aug 18 '11 16:08

Steve Kuo


3 Answers

On the status bar, there is a little icon showing a man. If you click on it, you can change the inspection level: nothing, syntax, full analysis.

like image 190
jackrabbit Avatar answered Sep 25 '22 21:09

jackrabbit


To disable inspections:

Settings > Project Settings > Inspections

Click the 'Reset to empty' icon (looks like an eraser)

To disable intentions:

Settings > IDE Settings > Intentions

Uncheck all of the boxes here

like image 32
CrackerJack9 Avatar answered Sep 22 '22 21:09

CrackerJack9


I have concluded that it's not possible to completely disable Inspections in IntelliJ 10.5 (at least while editing ActionScript) possibly due to a bug.

Follow-up: IntelliJ support is saying this may be a bug.

Edit April 2017: Finally there is a workaround, in particular add:

<option name="SHOW_INTENTION_BULB" value="false" />

to IdeaIC2017.1/options/editor.xml. If there's no editor.xml then create a new one as such:

<application>
  <component name="EditorSettings">
    <option name="SHOW_INTENTION_BULB" value="false" />
  </component>
</application>
like image 40
Steve Kuo Avatar answered Sep 24 '22 21:09

Steve Kuo