BetaRide
BetaRide

Reputation: 16844

How to get a list of files with errors in PhpStorm

In PhpStorm I get a read mark on the upper right side of the code window if there's a PHP bug in the file. That's great. What I like to have is a list of all files which have this read mark.

Any ideas?

Upvotes: 44

Views: 17495

Answers (2)

Devner
Devner

Reputation: 7255

Slightly off-topic, but may be helpful. If you need to jump through all the errors in a file (for example, CSS file), open up the file and and hit the F2 button on the keyboard. Repeat it to cycle through all the errors. To navigate back to the previous error, hit Shift + F2

Upvotes: 7

CrazyCoder
CrazyCoder

Reputation: 402005

To get the list of all files with errors and warnings use Code | Inspect Code. It's possible to specify what inspection profile to use, which directories to scan. Custom Scope provides a flexible way to include/exclude certain directories or files from the inspection results.

Upvotes: 74

Related Questions