You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to ignore Object.values via appending values to setting config. The other methods are ignorable(including Object.assign), while Object.values is not.
By the way can I specify the namespace of each method? For example, I want to exclude cc.select but not Intl.PluralRules.select. But appending select to builtin-compat-ignore will dismiss both error. But I still want to keep Intl.PluralRules.select. I tried "builtin-compat-ignore": ["cc.select", ...]; but no luck.
The text was updated successfully, but these errors were encountered:
Oh I figure out that such Object.values error is reported by eslint-plugin-compat but not eslint-plugin-builtin-compat.
Still need help for the second problem. Thanks.
By the way can I specify the namespace of each method? For example, I want to exclude cc.select but not Intl.PluralRules.select. But appending select to builtin-compat-ignore will dismiss both error. But I still want to keep Intl.PluralRules.select. I tried "builtin-compat-ignore": ["cc.select", ...]; but no luck.
Hello,
I'm trying to ignore Object.values via appending
values
tosetting
config. The other methods are ignorable(includingObject.assign
), whileObject.values
is not.How to dismiss such error?
By the way can I specify the namespace of each method? For example, I want to exclude
cc.select
but notIntl.PluralRules.select
. But appendingselect
tobuiltin-compat-ignore
will dismiss both error. But I still want to keepIntl.PluralRules.select
. I tried"builtin-compat-ignore": ["cc.select", ...];
but no luck.The text was updated successfully, but these errors were encountered: