Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I view all the jslint errors in IntelliJ?

IntelliJ underline in red every error reported by JSLint and I can see the respective indications on the rightmost margin of the document.

However, I would like to see all of the jslint errors in one window and be able to navigate from error to error.

Is it possible?

Thanks.

like image 848
mark Avatar asked Aug 17 '12 13:08

mark


People also ask

How do I see errors and warnings in IntelliJ?

Navigate to detected problems in the widget or by pressing F2 or Shift+F2 accordingly. By default, the IDE will navigate you to problems according to their severity: errors > warnings > weak warnings > server problems > typos. , select 'Next Error' Action (F2) Goes Through, and enable All Problems.

How do I show problems in IntelliJ?

You can select any problem in the window and press F4 or double-click any problem to jump to the corresponding line in the editor.

How do I view code history in IntelliJ?

Right-click anywhere in the editor and choose Local History | Show History from the context menu. In the dialog that opens, the left-hand pane shows a list of all saved revisions of the current file with timestamps.

How do I fix errors in IntelliJ?

Apply fixes in the Problems tool window All detected problems are listed in the left part of the tool window. Click a problem to display inspection details on the right. icon on the toolbar or in the context menu. You can also press Alt+Enter and select a suitable fix from the popup menu.


1 Answers

Run Analyze | Inspect Code with the JSLint code inspection enabled in the profile.

like image 154
CrazyCoder Avatar answered Oct 11 '22 22:10

CrazyCoder