Skip to content

Commit 190b671

Browse files
committed
fix(lint): ignore consistent-function-scoping rule inline
1 parent 9e82003 commit 190b671

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/Select.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ const availableOptions = computed(() => {
128128
const options = props.displayedOptions || props.options;
129129
130130
// Remove already selected values from the list of options, when in multi-select mode.
131+
// eslint-disable-next-line unicorn/consistent-function-scoping
131132
const filterMultiSelectedValues = (options: GenericOption[]) => options.filter(
132133
(option) => !(selected.value as OptionValue[]).includes(option.value),
133134
);

0 commit comments

Comments
 (0)