"rules": {
    "@type-eslint/quotes": "off",
    "@type-eslint/strict-boolean-expressions": "off",
    "@type-eslint/semi": "off",
    "@type-eslint/space-before-function-paren": "off",
    "@type-eslint/no-unused-vars": "off",
    "@type-eslint/comma-dangle": "off",
    "@type-eslint/explicit-function-return-type": "off",
    "@type-eslint/member-delimiter-style": "off",
    "react/react-in-jsx-scope": "off",
    "eqeqeq": "off",
    "curly": "error",
    "no-unused-vars": ["warn", { "vars": "all", "args": "after-used" }]
  }

Eslint 까니까 prettier랑 설정 충돌 나서 콤마 한개만 쓰는 룰 같은거 다 꺼놨는데 보통 설정 어케들 해놓음?