From 34049f7510a31ed4e5a6d7acf62c5c524ef7dc8a Mon Sep 17 00:00:00 2001 From: ehmicky Date: Fri, 1 Nov 2024 18:54:17 +0000 Subject: [PATCH] Fix linting --- src/description.test.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/description.test.js b/src/description.test.js index 70bfa18..271449f 100644 --- a/src/description.test.js +++ b/src/description.test.js @@ -27,6 +27,7 @@ each( { input: arrayWithProps, reason: 'ignoredArrayProperty' }, { input: () => {}, reason: 'ignoredFunction' }, { + // eslint-disable-next-line fp/no-mutating-methods input: Object.defineProperty({}, 'prop', { value: true, enumerable: false, @@ -85,6 +86,7 @@ test.serial('Returns error name and message', (t) => { each( [ { + // eslint-disable-next-line fp/no-mutating-methods input: Object.defineProperty({}, 'prop', { value: true, enumerable: true, @@ -94,6 +96,7 @@ each( reason: 'descriptorNotWritable', }, { + // eslint-disable-next-line fp/no-mutating-methods input: Object.defineProperty({}, 'prop', { value: true, enumerable: true,