feat(ide): Add Project Default inspection profile

This commit includes a new inspection profile named 'Project Default'. This profile is configured to detect duplicated code in TypeScript with a weak warning level. It is enabled by default.
This commit is contained in:
Mathis H (Avnyr) 2024-06-20 15:09:41 +02:00
parent 53be13ef38
commit 5164255aea
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -0,0 +1,10 @@
<component name="InspectionProjectProfileManager">
<profile version="1.0">
<option name="myName" value="Project Default" />
<inspection_tool class="DuplicatedCode" enabled="true" level="WEAK WARNING" enabled_by_default="true">
<Languages>
<language minSize="86" name="TypeScript" />
</Languages>
</inspection_tool>
</profile>
</component>