Vue3 closes eslint verification

Turn off eslint verification:

Find the file vue.config.js (if there is no such file, create one in the root directory)
and set the lintOnSave property to false, if not, write it in yourself.

module.exports = {
    
    
lintOnSave: false
}

Turn off the eslint prompt: you can create a new file
in the root directory of the project , and then write it in the file ..eslintignore*

*

Guess you like

Origin blog.csdn.net/asd54090/article/details/130986753