Skip to content

Commit 8964fab

Browse files
chore(deps-dev): bump @readme/eslint-config from 5.1.0 to 6.1.0 (#290)
* chore(deps-dev): bump @readme/eslint-config from 5.1.0 to 6.1.0 Bumps [@readme/eslint-config](https://github.com/readmeio/eslint-config) from 5.1.0 to 6.1.0. - [Release notes](https://github.com/readmeio/eslint-config/releases) - [Changelog](https://github.com/readmeio/eslint-config/blob/main/CHANGELOG.md) - [Commits](readmeio/standards@5.1.0...6.1.0) --- updated-dependencies: - dependency-name: "@readme/eslint-config" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]> * style: commenting out an eslint rule warning Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Jon Ursenbach <[email protected]>
1 parent 7407080 commit 8964fab

File tree

3 files changed

+423
-161
lines changed

3 files changed

+423
-161
lines changed

packages/node/lib/process-request.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ const objectToArray = require('./object-to-array');
1212
* @returns A redacted string potentially containing the length of the original value, if it was a string
1313
*/
1414
function redactValue(value) {
15+
// eslint-disable-next-line sonarjs/no-nested-template-literals
1516
return `[REDACTED${typeof value === 'string' ? ` ${value.length}` : ''}]`;
1617
}
1718

0 commit comments

Comments
 (0)