Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Ignore folders in PhpStorm

Tags:

How can I tell PhpStorm to ignore folders in a project?

e.g: I would like to ignore these folders for good without deleting them.

like image 553
Mick Avatar asked Jan 22 '13 01:01

Mick


People also ask

How do I ignore a folder in IntelliJ?

You can also just right click on your folder and select Mark Directory As > Excluded . Excluded folders (shown as rootExcluded) are ones that IntelliJ IDEA "partially ignores".

What is excluded directory in IntelliJ?

Excludes Use this page to specify files and directories within your project that should not be passed to the compiler. In this field, the path to a file or directory to be excluded from compilation is shown. For a directory: select this option to exclude from compilation all the corresponding subdirectories.

How do I ignore a file in WebStorm?

Excluded files are ignored by code completion, navigation, and inspections. To exclude a file, right-click it in the Project tool window and select Override File Type from the menu. From the Choose File Type list, select Plain text.

How do I ignore files in Pycharm?

Under the Version Control node, of the Settings dialog box, click Ignored Files. The Ignored Files dialog box opens. You can also add files to ignore list on-the-fly. A new file under the Unversioned Files change list, has Ignore command on its context menu.


1 Answers

What's wrong with:

Right click the directory -> Mark Directory As -> Excluded

like image 150
markus Avatar answered Sep 22 '22 23:09

markus