Greetings
Does PhpStorm (Intellij) have the ability to specify settings for a specific project?
For example: include the necessary plugins, specify the codestyle, specify the desired debugger (I have every project working in its docker-container).
Greetings
Does PhpStorm (Intellij) have the ability to specify settings for a specific project?
For example: include the necessary plugins, specify the codestyle, specify the desired debugger (I have every project working in its docker-container).
There are two types of settings in JetBrains IDE:
Project Settings
IDE settings
Project settings are specific to each project and are stored in the project’s .idea directory. IDE settings are located:
%USERPROFILE%\.PhpStormXX\config~/.PhpStormXX/configThe settings can be accessed via File | Settings File | Settings context menu or by pressing Ctrl+Alt+S
You need to proceed from what type of settings you want to change. For example, code-style acts at the IDE level, i.e. it is hardly possible to have your own code-style for each project without switching it manually every time. At the same time, the Run / Debug options are operations at the project level, which means that you can have unique debug configurations for each project.
Source: https://ru.stackoverflow.com/questions/763453/
All Articles