HomeAboutMeBlogGuest
© 2025 Sejin Cha. All rights reserved.
Built with Next.js, deployed on Vercel
프로그래머스 프론트엔드 데브코스 2기
프로그래머스 프론트엔드 데브코스 2기
/
😤
동영팀
/
🛻
API 프로젝트
/
Eslint
Eslint
Eslint

Eslint

태그
컨벤션
{ "env": { "browser": true, "commonjs": true }, "extends": [ "react-app", "react-app/jest", "eslint:recommended", "plugin:react/recommended", "plugin:@typescript-eslint/recommended", "plugin:prettier/recommended", "plugin:react/jsx-runtime", "prettier" ], "parser": "@typescript-eslint/parser", "parserOptions": { "ecmaFeatures": { "jsx": true }, "ecmaVersion": 2018, "sourceType": "module" }, "plugins": ["react", "@typescript-eslint"], "rules": { "react/jsx-uses-react": "off", "react/react-in-jsx-scope": "off", "react/prop-types": "off", "prettier/prettier": [ "error", { "endOfLine": "auto" } ] }, "overrides": [ { "files": [ "*/.stories.*" ], "rules": { "import/no-anonymous-default-export": "off" } } ] }