We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cloned eslint-plugin-compat-demo and added code and executed yarn lint. COMPAT work IF sentence outside, but NOT work IF sentence inside.
eslint-plugin-compat-demo
yarn lint
const foo1 = Object.values({});(line 17) is not warning by compat. I desire compat work everywhere include IF sentence inside.
const foo1 = Object.values({});
xxx@xxx eslint-plugin-compat-demo % yarn lint yarn run v1.22.10 $ eslint .; exit 0 Browserslist: caniuse-lite is outdated. Please run: npx browserslist@latest --update-db /Users/xxx/xxx/eslint-plugin-compat-demo/index.js 7:13 error PaymentRequest is not supported in Safari 9, IE 9 compat/compat 10:18 error IntersectionObserver is not supported in Safari 9, IE 9 compat/compat 12:13 error Object.values() is not supported in Safari 9, IE 9 compat/compat ✖ 3 problems (3 errors, 0 warnings) ✨ Done in 1.21s.
The text was updated successfully, but these errors were encountered:
same issue #404
Sorry, something went wrong.
No branches or pull requests
I cloned
eslint-plugin-compat-demo
and added code and executedyarn lint
.COMPAT work IF sentence outside, but NOT work IF sentence inside.
const foo1 = Object.values({});
(line 17) is not warning by compat.I desire compat work everywhere include IF sentence inside.
The text was updated successfully, but these errors were encountered: