# "no-iselse-slash" Rule Disallows self-closing `` and `` tags. ## Notes - Dependent on abstract tree build (global "disableTreeParse" configuration must **not** be true); - Auto-fixable; ## Configuration No configuration is available for this rule. Check the [Generic Configurations for Rules][generic-config]. ## Examples ```js "no-iselse-slash": {} ``` For the above configuration, the following scenarios may happen: ``` // Invalid; // Invalid; ``` ``` // Valid; // Valid; ``` [generic-config]: <../generic-rule-config.md>