All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.sonar.l10n.web.rules.Web.LongJavaScriptCheck.html Maven / Gradle / Ivy

Go to download

Analyze HTML (also within PHP/Ruby/etc. templates) and JSP/JSF code.

The newest version!

Long pieces of JavaScript should be located in dedicated *.js source files. This makes maintenance of both the script and the pages that use it easier. Additionally, it offers some efficiencies in serving the files, since it takes better advantage of browser caching to only re-serve the parts of a web page that have actually changed.

Noncompliant Code Example

<head>
  ...
  <script type="text/javascript" language="JavaScript">
    function doTheThing(arg1) {
    ...
    ...
    }

    function doTheOtherThing(arg1) {
    ...
    }

    function andSoOn() {
    ...
    }
  </script>
</head>

Compliant Solution

<head>
  ...
  <script type="text/javascript" language="JavaScript" src="myLongScript.js"> </script>
</head>




© 2015 - 2024 Weber Informatics LLC | Privacy Policy