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
{{ message }}
This repository was archived by the owner on Nov 18, 2024. It is now read-only.
When running ESLint on the current code base, we get the following warnings:
/addons-code-manager/src/test-helpers.spec.tsx
14:33 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
/addons-code-manager/src/test-helpers.tsx
170:41 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
171:48 warning Unexpected any. Specify a different type @typescript-eslint/no-explicit-any
✖ 3 problems (0 errors, 3 warnings)
which all have to do with ShallowUntilTarget. I think our use of any in those cases makes sense, but it's a bit annoying to see these warnings every time we run ESLint.
How do folks feel about adding code comments to the files to ignore those specific warnings in those cases?
The text was updated successfully, but these errors were encountered:
I think we should make this rule throw an error instead of a warning. We can still disable the rule if needed. The patch for this issue will determine whether each current warning needs to be fixed or ignored.
When running
ESLint
on the current code base, we get the following warnings:which all have to do with
ShallowUntilTarget
. I think our use ofany
in those cases makes sense, but it's a bit annoying to see these warnings every time we runESLint
.How do folks feel about adding code comments to the files to ignore those specific warnings in those cases?
The text was updated successfully, but these errors were encountered: