강의

멘토링

커뮤니티

Inflearn Community Q&A

silqwer's profile image
silqwer

asked

Vue.js Mastery - Everything You Need for Real-World Development

Installing the ESLint plugin and changing its settings

Auto Fix is enabled by default. Use the single string form.

Written on

·

851

1

settings.json을 강의처럼 설정을 하니 아래와 같은 경고문구가 뜨는데 어떤 의미일까요 ? 

Auto Fix is enabled by default. Use the single string form.

javascriptvuexvuejs

Answer 2

5

auto fix가 기본 입니다. 오류나는게 거실리시면, 아래와 같이 해보세요.

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

1

captain님의 프로필 이미지
captain
Instructor

안녕하세요 silqwer님, 위 경고 문구는 ESLint 플러그인 설정 내용에 버전 차이가 있어서 그렇습니다. 신경쓰지 않으셔도 될 것 같아요 :)

silqwer's profile image
silqwer

asked

Ask a question