Skip to content

Qvil Blog

[ESLint] VSCode에서 ESLint 수정한대로 동작 안할 때/Not fixing in VSCode on save

ESLint1 min read

settings.json에 아래 없으니까 적용 안되고 있었음.

1. 설정(cmd + ,)

vscode-settings

2. settings.json에 아래 코드 추가

1"eslint.validate": [
2 "typescript",
3 "typescriptreact",
4 "javascript",
5 "javascriptreact"
6],

References

ESLint in VSCode not fixing on save