에러노트
prettier 에러날 때
minjuuu
2022. 2. 19. 02:57
728x90
window인 나만 계속 prettier 에러가 났다.
eslintrc에 아래의 조건을 추가해주니 error가 안남.
메모해두었다가 다음에도 난다면 또 적용해보자!
"prettier/prettier": [
"error", { "endOfLine": "auto" }
],
// .eslintrc 에 추가해보자.
{
"env": {
"browser": true,
"es2021": true
},
"extends": ["plugin:react/recommended", "plugin:prettier/recommended"],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
},
"ecmaVersion": 12,
"sourceType": "module"
},
"plugins": ["react", "@typescript-eslint", "prettier"],
"rules": {
"prettier/prettier": [
"error",
{
"endOfLine": "auto"
}
],
"react/jsx-uses-react": "off",
"react/react-in-jsx-scope": 0
},
"ignorePatterns": ["*.config.js"]
}728x90