The inspection tool for checking DuplicatedCode has been enabled in the Project_Default.xml file. It's set to give a weak warning for duplication in TypeScript code with a minimum size of 67. This should assist in maintaining quality by preventing repetitive code patterns.
11 lines
470 B
XML
11 lines
470 B
XML
<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="67" name="TypeScript" />
|
|
</Languages>
|
|
</inspection_tool>
|
|
<inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
|
|
</profile>
|
|
</component> |