-
Notifications
You must be signed in to change notification settings - Fork 8
rule asset type
Hanxing Yang edited this page Jul 9, 2016
·
6 revisions
asset-type
Default value of attribute type
(for <link>/<style>/<script>
) does not need to be set. If set, it reports.
<!-- Bad -->
<link type="text/css" href="...">
<style type="text/css">...</style>
<script type="text/javascript" src="..."></script>
<script type="text/javascript">...</script>
<!-- Good -->
<link href="...">
<style>...</style>
<script src="..."></script>
<script>...</script>
-
001
link[type="text/css"]
orstyle[type="text/css"]
found. -
002
script[type="text/javascript"]
found.
-
true
Do check / format.
-
false
Do not check / format.
Yes.