Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

#394 마이페이지에 알림 설정 추가 + Introduce @emotion/react #488

Merged
merged 22 commits into from
Apr 1, 2023
Merged
Show file tree
Hide file tree
Changes from 15 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,10 @@
"rules": {
"no-unused-vars": 1,
"react/react-in-jsx-scope": "off",
"react/no-unknown-property": ["error", { "ignore": ["chatcheckout"] }]
"react/no-unknown-property": [
"error",
{ "ignore": ["chatcheckout", "css"] }
]
},
"overrides": [
{
Expand Down
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
node_modules
build
.github
tsconfig.json
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

tsconfig.json formatting은 typescript가 자동으로 해주더라고요.

9 changes: 9 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,13 @@ module.exports = {
},
},
],
babel: {
presets: [
[
"@babel/preset-react",
{ runtime: "automatic", importSource: "@emotion/react" },
],
],
plugins: ["@emotion/babel-plugin"],
},
Comment on lines +14 to +22
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

css prop 에 대해서 babel 설정하였습니다.

};
Loading