Share IntelliJ inspection profile between different projects

I have a validation profile configured for one of my IntelliJ projects, and you have a "General profile". When I am in another project, the verification profile that I created is not available (does not appear in the drop-down list). Is there a way to create an inspection profile only once and use it in many projects?

I am running IntelliJ 10.5.4.

+4
source share
1 answer

The general profile parameter means that it will be saved in the project and will be shared by other developers through the project files. If you disable this option , the verification profile will be saved in the IntelliJ IDEA configuration directory on your computer, and you can use the same profile in several projects.

See also the Inspections help topic:

Share your profile . Check this box to make the selected profile available to your team, i.e. make it a project level profile. If you are creating an IDE level profile for your own purposes, clear this check box.

+5
source

Source: https://habr.com/ru/post/1388354/


All Articles