core/modules/_core/res/js/crud/field/spatial.js

Summary

Maintainability
A
1 hr
Test Coverage

Function GMapsInitialize has 38 lines of code (exceeds 25 allowed). Consider refactoring.
Open

    function GMapsInitialize() {

        var prepareForSql = function(loc) {
            loc = loc.toString();
            loc = loc.replace('(', '');
Severity: Minor
Found in core/modules/_core/res/js/crud/field/spatial.js - About 1 hr to fix

    Unnecessary semicolon.
    Open

    ;$(document).ready(function() {

    disallow unnecessary semicolons (no-extra-semi)

    Typing mistakes and misunderstandings about where semicolons are required can lead to semicolons that are unnecessary. While not technically an error, extra semicolons can cause confusion when reading code.

    Rule Details

    This rule disallows unnecessary semicolons.

    Examples of incorrect code for this rule:

    /*eslint no-extra-semi: "error"*/
    
    var x = 5;;
    
    function foo() {
        // code
    };

    Examples of correct code for this rule:

    /*eslint no-extra-semi: "error"*/
    
    var x = 5;
    
    var foo = function() {
        // code
    };

    When Not To Use It

    If you intentionally use extra semicolons then you can disable this rule.

    Related Rules

    There are no issues that match your filters.

    Category
    Status