Skip to content

Commit

Permalink
Chore: JS project 저장
Browse files Browse the repository at this point in the history
  • Loading branch information
Dobbymin committed Jun 7, 2024
0 parents commit a79b316
Show file tree
Hide file tree
Showing 148 changed files with 10,766 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
{
"env": {
"browser": true,
"es2021": true
},
"extends": [
"plugin:prettier/recommended",
"plugin:react/recommended",
"plugin:react-hooks/recommended",
"plugin:jsx-a11y/recommended",
"plugin:import/errors",
"plugin:import/warnings"
],
"parserOptions": {
"ecmaVersion": 2021,
"sourceType": "module"
},
"plugins": ["react", "react-hooks", "jsx-a11y", "import", "prettier"],
"rules": {
"no-param-reassign": ["error", { "props": false }],
"import/no-unresolved": "off",
"react/prop-types": "off",
"prettier/prettier": [
"off",
{
"endOfLine": "auto"
}
],
"react/react-in-jsx-scope": "off"
}
}
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: Feature request
about: 기능 추가 이슈 템플릿
title: ''
labels: ''
assignees: ''
---

## **Issue**

### ✨ 기능 리스트

- [ ] 구현한 기능
- [ ] 구현한 기능

---

### ✏ 사용 이유

---
17 changes: 17 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
## **PR**

### ✨ 작업 내용

-

---

### ✨ 참고 사항

---

### ⏰ 현재 버그

---

### ✏ Git Close
26 changes: 26 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?

.env
38 changes: 38 additions & 0 deletions .prettierrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
{
"arrowParens": "always",
"bracketSameLine": false,
"bracketSpacing": true,
"embeddedLanguageFormatting": "auto",
"htmlWhitespaceSensitivity": "css",
"insertPragma": false,
"jsxSingleQuote": true,
"printWidth": 80,
"proseWrap": "always",
"quoteProps": "as-needed",
"requirePragma": false,
"semi": true,
"singleAttributePerLine": false,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false,
"vueIndentScriptAndStyle": false,

"plugins": ["@trivago/prettier-plugin-sort-imports"],
"importOrder": [
"^react(.*)",
"<THIRD_PARTY_MODULES>",
"^@api/(.*)$",
"^@assets/(.*)$",
"^@components/(.*)$",
"^@constants/(.*)$|^@utils/(.*)",
"^@hooks/(.*)$",
"^@pages/(.*)$",
"^@store/(.*)$",
"^@styles/(.*)$",
"^@utils/(.*)$",
"^(.*)/(.*)$"
],
"importOrderSeparation": true,
"importOrderSortSpecifiers": false
}
Loading

0 comments on commit a79b316

Please sign in to comment.