공부/TIL

[TIL] Eslint 오류 : Auto Fix is enabled by default. Use the single string form.

Ail_ 2022. 6. 23. 22:28

Eslint에 다음과 같이 언어 설정을 하는데 오류가 났다.

 

해결 방법 :

아래와 같이 배열로 넣어주면 된다.

    "eslint.validate": [
        "vue",
        "javascript",
        "javascriptreact",
        "typescript",
        "typescriptreact",
        "html",
    ],

 

출처

https://torbjorn.tistory.com/621