728x90
반응형
{"editor.codeActionsOnSave": {
"source.fixAll.eslint": true
},
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
}
setting.json에 코드 추가
$ npm i -g eslint
$ eslint --init
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"eslint:recommended",
"plugin:vue/essential"
],
"parserOptions": {
"ecmaVersion": 6,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"plugins": [
"vue"
],
"rules": {
}
}
.eslintric.json 에 추가
728x90
반응형
'Programming > error' 카테고리의 다른 글
[Tibero] Expression is not in a GROUP BY clause. (0) | 2023.02.16 |
---|---|
[SVN] commit 할때 svn out of date 오류 (0) | 2023.02.03 |
[Vue.js error] delete `␍`eslint 해결하기 (0) | 2022.05.08 |
[spring] Could not find 'tools.jar' in the active JRE. 오류 (0) | 2022.03.14 |
[java error] input length must be multiple of 16 when decrypting with padded cipher (0) | 2022.01.27 |