//----------------- settings.json { "window.zoomLevel" : 1 , "editor.renderWhitespace" : "all" , "workbench.iconTheme" : "material-icon-theme" , "editor.codeActionsOnSave" : { "source.fixAll.eslint" : true }, "eslint.validate" : [ "typescript" ], } //-----------------.eslintrc.js module . exports = { root : true , env : { node : true , }, extends : [ 'plugin:vue/vue3-essential' , 'eslint:recommended' , '@vue/typescript/recommended' , '@vue/prettier' , '@...