Skip to content

Commit

Permalink
feat: setup build configurations and templates
Browse files Browse the repository at this point in the history
  • Loading branch information
woowahan-cron committed Mar 9, 2023
0 parents commit 965a557
Show file tree
Hide file tree
Showing 23 changed files with 12,644 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .eslintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{
"rules": {},
"env": {
"es6": true,
"node": true
},
"parserOptions": {
"ecmaVersion": "latest"
},
"extends": ["eslint:recommended", "plugin:prettier/recommended"]
}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
3 changes: 3 additions & 0 deletions .prettierrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"endOfLine": "auto"
}
4 changes: 4 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"editor.defaultFormatter": "esbenp.prettier-vscode",
"editor.formatOnSave": true
}
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# javascript-movie-review

FE 5기 레벨1 영화관 미션
3 changes: 3 additions & 0 deletions __tests__/render.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
/**
* @jest-environment jsdom
*/
Empty file added __tests__/unit.test.ts
Empty file.
3 changes: 3 additions & 0 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
module.exports = {
presets: [["@babel/preset-env", { targets: { node: "current" } }], "@babel/preset-typescript"],
};
Empty file added docs/REQUIREMENTS.md
Empty file.
12 changes: 12 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Document</title>
</head>
<body>
영화 리뷰 미션을 진행하세요
</body>
</html>
Loading

0 comments on commit 965a557

Please sign in to comment.