This commit augments the VCS XML with "CommitMessageInspectionProfile". It enables two inspection tools: "CommitFormat" and "CommitNamingConvention", meant to enforce commit standards and conventions within the project. These tools will raise a warning when they detect a violation. Signed-off-by: Mathis <yidhra@tuta.io>
12 lines
495 B
XML
12 lines
495 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project version="4">
|
|
<component name="CommitMessageInspectionProfile">
|
|
<profile version="1.0">
|
|
<inspection_tool class="CommitFormat" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
<inspection_tool class="CommitNamingConvention" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
</profile>
|
|
</component>
|
|
<component name="VcsDirectoryMappings">
|
|
<mapping directory="" vcs="Git" />
|
|
</component>
|
|
</project> |