Pattern: Malformed use of lang
Issue: -
Disallows the use of languages other than those available in the your application for the lang attribute of block elements.
<!-- ✓ GOOD -->
<script lang="ts">
</script>
<!-- ✗ BAD -->
<script>
</script>
Pattern: Malformed use of lang
Issue: -
Disallows the use of languages other than those available in the your application for the lang attribute of block elements.
<!-- ✓ GOOD -->
<script lang="ts">
</script>
<!-- ✗ BAD -->
<script>
</script>