This rule guards against the use of the deprecated jQuery sideNavigation()
API, which was ported to vanilla JavaScript in LPS-95476.
Examples of incorrect code for this rule:
$(toggler).sideNavigation();
$(toggler).sideNavigation('hide');
<span data-toggle="sidenav"></span>;
Examples of correct code for this rule:
Liferay.SideNavigation.initialize(toggler);
Liferay.SideNavigation.hide(toggler);
<span data-toggle="liferay-sidenav"></span>;