-
I modified the props of a component in the project, but the Vue file that uses the component only prompts an error when opened, and running eslint does not prompt this error. Here is my project eslint config:
tsconfig:
package.json :
|
Beta Was this translation helpful? Give feedback.
Answered by
so1ve
Aug 2, 2023
Replies: 1 comment 1 reply
-
ESLint never checks whether a prop is missing, nor the arguments passed to a function. These diagnostics are provided by language service, not by ESLint. ESLint is a static analyzer. |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
so1ve
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
ESLint never checks whether a prop is missing, nor the arguments passed to a function. These diagnostics are provided by language service, not by ESLint. ESLint is a static analyzer.