Disable spell checker for two lines

This commit is contained in:
Andrew Henry 2025-04-18 16:00:26 -07:00
parent e8a477e966
commit 17671f7747

View File

@ -471,10 +471,10 @@ class CouchObjectProvider {
}
if (startKey !== undefined && endKey !== undefined) {
// eslint-disable-next-line
/* spell-checker: disable */
requestBody.startkey = startKey;
// eslint-disable-next-line
requestBody.endkey = endKey;
/* spell-checker: enable */
} else {
requestBody.keys = stringifiedKeys;
}