Skip to content
Snippets Groups Projects
Verified Commit 48f3e0cf authored by Théodore Biadala's avatar Théodore Biadala
Browse files

Issue #3474108 by tomomi: Replace eslint-plugin-jquery with eslint-plugin-no-jquery

parent 843bf350
No related branches found
No related tags found
19 merge requests!11131[10.4.x-only-DO-NOT-MERGE]: Issue ##2842525 Ajax attached to Views exposed filter form does not trigger callbacks,!8736Update the Documention As per the Function uses.,!8513Issue #3453786: DefaultSelection should document why values for target_bundles NULL and [] behave as they do,!3878Removed unused condition head title for views,!3818Issue #2140179: $entity->original gets stale between updates,!3742Issue #3328429: Create item list field formatter for displaying ordered and unordered lists,!3731Claro: role=button on status report items,!3154Fixes #2987987 - CSRF token validation broken on routes with optional parameters.,!3133core/modules/system/css/components/hidden.module.css,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!2812Issue #3312049: [Followup] Fix Drupal.Commenting.FunctionComment.MissingReturnType returns for NULL,!2378Issue #2875033: Optimize joins and table selection in SQL entity query implementation,!2062Issue #3246454: Add weekly granularity to views date sort,!10223132456: Fix issue where views instances are emptied before an ajax request is complete,!877Issue #2708101: Default value for link text is not saved,!617Issue #3043725: Provide a Entity Handler for user cancelation,!579Issue #2230909: Simple decimals fail to pass validation,!560Move callback classRemove outside of the loop,!555Issue #3202493
Pipeline #282386 passed with warnings
Pipeline: drupal

#282411

    Pipeline: drupal

    #282400

      Pipeline: drupal

      #282390

        { {
        "plugins": [ "plugins": [
        "jquery" "no-jquery"
        ], ],
        "rules": { "rules": {
        "jquery/no-ajax": 0, "no-jquery/no-ajax": 0,
        "jquery/no-ajax-events": 2, "no-jquery/no-ajax-events": 2,
        "jquery/no-animate": 2, "no-jquery/no-animate": 2,
        "jquery/no-attr": 0, "no-jquery/no-attr": 0,
        "jquery/no-bind": 2, "no-jquery/no-bind": 2,
        "jquery/no-class": 0, "no-jquery/no-class": 0,
        "jquery/no-clone": 2, "no-jquery/no-clone": 2,
        "jquery/no-closest": 0, "no-jquery/no-closest": 0,
        "jquery/no-css": 2, "no-jquery/no-css": 2,
        "jquery/no-data": 0, "no-jquery/no-data": 0,
        "jquery/no-deferred": 0, "no-jquery/no-deferred": 0,
        "jquery/no-delegate": 2, "no-jquery/no-delegate": 2,
        "jquery/no-each": 0, "no-jquery/no-each": 0,
        "jquery/no-extend": 0, "no-jquery/no-extend": 0,
        "jquery/no-fade": 0, "no-jquery/no-fade": 0,
        "jquery/no-filter": 0, "no-jquery/no-filter": 0,
        "jquery/no-find": 0, "no-jquery/no-find": 0,
        "jquery/no-global-eval": 2, "no-jquery/no-global-eval": 2,
        "jquery/no-grep": 2, "no-jquery/no-grep": 2,
        "jquery/no-has": 0, "no-jquery/no-has": 0,
        "jquery/no-hide": 0, "no-jquery/no-hide": 0,
        "jquery/no-html": 0, "no-jquery/no-html": 0,
        "jquery/no-in-array": 0, "no-jquery/no-in-array": 0,
        "jquery/no-is-array": 0, "no-jquery/no-is-array": 0,
        "jquery/no-is-function": 2, "no-jquery/no-is-function": 2,
        "jquery/no-is": 2, "no-jquery/no-is": 2,
        "jquery/no-load": 2, "no-jquery/no-load": 2,
        "jquery/no-map": 2, "no-jquery/no-map": 2,
        "jquery/no-merge": 2, "no-jquery/no-merge": 2,
        "jquery/no-param": 2, "no-jquery/no-param": 2,
        "jquery/no-parent": 0, "no-jquery/no-parent": 0,
        "jquery/no-parents": 0, "no-jquery/no-parents": 0,
        "jquery/no-parse-html": 2, "no-jquery/no-parse-html": 2,
        "jquery/no-prop": 0, "no-jquery/no-prop": 0,
        "jquery/no-proxy": 2, "no-jquery/no-proxy": 2,
        "jquery/no-ready": 2, "no-jquery/no-ready": 2,
        "jquery/no-serialize": 2, "no-jquery/no-serialize": 2,
        "jquery/no-show": 0, "no-jquery/no-show": 0,
        "jquery/no-size": 2, "no-jquery/no-size": 2,
        "jquery/no-sizzle": 0, "no-jquery/no-sizzle": 0,
        "jquery/no-slide": 0, "no-jquery/no-slide": 0,
        "jquery/no-submit": 2, "no-jquery/no-submit": 2,
        "jquery/no-text": 2, "no-jquery/no-text": 2,
        "jquery/no-toggle": 0, "no-jquery/no-toggle": 0,
        "jquery/no-trigger": 0, "no-jquery/no-trigger": 0,
        "jquery/no-trim": 2, "no-jquery/no-trim": 2,
        "jquery/no-val": 2, "no-jquery/no-val": 2,
        "jquery/no-when": 2, "no-jquery/no-when": 2,
        "jquery/no-wrap": 0 "no-jquery/no-wrap": 0
        } }
        } }
        \ No newline at end of file
        ...@@ -1525,7 +1525,7 @@ ...@@ -1525,7 +1525,7 @@
        * The XMLHttpRequest status. * The XMLHttpRequest status.
        */ */
        css(ajax, response, status) { css(ajax, response, status) {
        // eslint-disable-next-line jquery/no-css // eslint-disable-next-line no-jquery/no-css
        $(response.selector).css(response.argument); $(response.selector).css(response.argument);
        }, },
        ......
        ...@@ -5,7 +5,7 @@ ...@@ -5,7 +5,7 @@
        window.drupalCumulativeXhrCount = 0; window.drupalCumulativeXhrCount = 0;
        (function ($) { (function ($) {
        // jQuery.active alone is unable to detect whether an XHR request ever occurred. // jQuery.active alone is unable to detect whether an XHR request ever occurred.
        /* eslint-disable jquery/no-ajax-events */ /* eslint-disable no-jquery/no-ajax-events */
        $(document) $(document)
        .on('ajaxSend', function () { .on('ajaxSend', function () {
        window.drupalCumulativeXhrCount++; window.drupalCumulativeXhrCount++;
        ......
        ...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
        "eslint-config-prettier": "^9.1.0", "eslint-config-prettier": "^9.1.0",
        "eslint-formatter-gitlab": "^5.1.0", "eslint-formatter-gitlab": "^5.1.0",
        "eslint-plugin-import": "^2.29.1", "eslint-plugin-import": "^2.29.1",
        "eslint-plugin-jquery": "^1.5.1", "eslint-plugin-no-jquery": "^3.0.2",
        "eslint-plugin-prettier": "^5.2.1", "eslint-plugin-prettier": "^5.2.1",
        "eslint-plugin-yml": "^1.14.0", "eslint-plugin-yml": "^1.14.0",
        "glob": "11.0.0", "glob": "11.0.0",
        ......
        ...@@ -2406,7 +2406,7 @@ __metadata: ...@@ -2406,7 +2406,7 @@ __metadata:
        eslint-config-prettier: "npm:^9.1.0" eslint-config-prettier: "npm:^9.1.0"
        eslint-formatter-gitlab: "npm:^5.1.0" eslint-formatter-gitlab: "npm:^5.1.0"
        eslint-plugin-import: "npm:^2.29.1" eslint-plugin-import: "npm:^2.29.1"
        eslint-plugin-jquery: "npm:^1.5.1" eslint-plugin-no-jquery: "npm:^3.0.2"
        eslint-plugin-prettier: "npm:^5.2.1" eslint-plugin-prettier: "npm:^5.2.1"
        eslint-plugin-yml: "npm:^1.14.0" eslint-plugin-yml: "npm:^1.14.0"
        glob: "npm:11.0.0" glob: "npm:11.0.0"
        ...@@ -4389,12 +4389,12 @@ __metadata: ...@@ -4389,12 +4389,12 @@ __metadata:
        languageName: node languageName: node
        linkType: hard linkType: hard
        "eslint-plugin-jquery@npm:^1.5.1": "eslint-plugin-no-jquery@npm:^3.0.2":
        version: 1.5.1 version: 3.0.2
        resolution: "eslint-plugin-jquery@npm:1.5.1" resolution: "eslint-plugin-no-jquery@npm:3.0.2"
        peerDependencies: peerDependencies:
        eslint: ">=5.4.0" eslint: ">=8.0.0"
        checksum: 10c0/2b72a3c7600b7524e9f6d323bfcb5f9e6557c86e9bc7e473913bc7b94d2c3bf17f61dfd9d0f72d089a955de2930625cbcb0e991e7f92e7b56b6fe1930123c678 checksum: 10c0/1f8564ba673553779d41d8239d080bd1774dfe5b588a12b89015499168160297647c860b8c34eeaeab90b6f222190703f19a8d7fab4d45c1ff780feca3c55600
        languageName: node languageName: node
        linkType: hard linkType: hard
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Finish editing this message first!
        Please register or to comment