diff options
author | toasted-nutbread <toasted-nutbread@users.noreply.github.com> | 2024-02-19 07:30:17 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-19 12:30:17 +0000 |
commit | 2da866f982930c76d2317a3be426410683ecf5a2 (patch) | |
tree | e77ce545177ba398068cb63037096a56dea04e2c /types | |
parent | 65fa65fc7765bc9a6557d3ce6f8bdcef5b5e0cf7 (diff) |
Update eslint rules (#710)
Diffstat (limited to 'types')
-rw-r--r-- | types/ext/settings-modifications.d.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/types/ext/settings-modifications.d.ts b/types/ext/settings-modifications.d.ts index becfea5c..e70ff7e8 100644 --- a/types/ext/settings-modifications.d.ts +++ b/types/ext/settings-modifications.d.ts @@ -97,7 +97,10 @@ export type ModificationSpliceResult = unknown[]; export type ModificationPushResult = number; +// There is some redundancy with this type currently due to the `unknown`s used in it. +// For now, this is fine, but the types could be improved in the future. export type ModificationResult = ( + // eslint-disable-next-line @typescript-eslint/no-redundant-type-constituents ModificationSetResult | ModificationDeleteResult | // eslint-disable-next-line @typescript-eslint/no-duplicate-type-constituents |