Skip to content

Instantly share code, notes, and snippets.

View Ko-Sit's full-sized avatar
:octocat:
Focusing

Konstantin Sitkin Ko-Sit

:octocat:
Focusing
  • Warsaw
View GitHub Profile
@Ko-Sit
Ko-Sit / pmd-rules.xml
Last active November 11, 2021 12:21
pmd-config
<?xml version="1.0" encoding="UTF-8"?>
<ruleset xmlns="http://pmd.sourceforge.net/ruleset/2.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="Custom Rules" xsi:schemaLocation="http://pmd.sourceforge.net/ruleset/2.0.0 https://pmd.sourceforge.io/ruleset_2_0_0.xsd">
<description>Apex Code Review Rules</description>
<rule ref="category/apex/codestyle.xml">
<exclude name="FieldNamingConventions" />
</rule>
<rule ref="category/apex/bestpractices.xml">
<exclude name="DebugsShouldUseLoggingLevel" />
<exclude name="AvoidGlobalModifier" />
</rule>