diff --git a/public_html/wp-content/mu-plugins/blocks/.eslintrc.js b/public_html/wp-content/mu-plugins/blocks/.eslintrc.js
index f91dc3e63e..940ebab51a 100644
--- a/public_html/wp-content/mu-plugins/blocks/.eslintrc.js
+++ b/public_html/wp-content/mu-plugins/blocks/.eslintrc.js
@@ -105,23 +105,6 @@ module.exports = {
ignoreStateless: true
} ],
- /*
- * A short description often makes a function easier to understand, and also provides a nice visual
- * delineation between functions.
- *
- * Given that closures should be short and contextually relevant, requiring documentation for them would
- * likely hurt readability more than it would help clarity.
- */
- 'require-jsdoc': [ 'error', {
- 'require': {
- 'FunctionDeclaration' : true,
- 'MethodDefinition' : true,
- 'ClassDeclaration' : true,
- 'ArrowFunctionExpression' : false,
- 'FunctionExpression' : true
- }
- } ],
-
/*
* Sort imports alphabetically, at least inside multiple-member imports. Ignores declaration sorting since
* this interfers with the External/WordPress/Internal groupings. For example, it will flag the following