Skip to content

Commit

Permalink
project init
Browse files Browse the repository at this point in the history
  • Loading branch information
sikkzz committed Apr 10, 2024
0 parents commit b5269a6
Show file tree
Hide file tree
Showing 39 changed files with 41,350 additions and 0 deletions.
132 changes: 132 additions & 0 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,132 @@
{
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "@typescript-eslint/parser",
"plugins": ["@typescript-eslint","import"],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/consistent-type-imports": "error",
"import/order":[
"error",
{
"groups": [
"builtin",
"external",
"internal",
["sibling", "parent", "index"],
"type",
"unknown"
],
"pathGroups": [
{
"pattern": "{react*,react*/*}",
"group": "external",
"position": "before"
},
{
"pattern": "{axios*,axios*/*}",
"group": "external",
"position": "before"
},
{
"pattern": "{@emotion*,@emotion*/*}",
"group": "external",
"position": "before"
},
{
"pattern": "{recoil*,recoil*/*}",
"group": "external",
"position": "before"
},
{
"pattern": "{@storybook*,@storybook*/*}",
"group": "external",
"position": "before"
},
{
"pattern": "{@tanstack*,@tanstack*/*}",
"group": "external",
"position": "before"
},
{
"pattern": "@/assets/**/*",
"group": "internal",
"position": "before"
},
{
"pattern": "@/api/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/constants/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/hooks/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/pages/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/recoil/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/styles/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/utils/**/*",
"group": "type",
"position": "before"
},
{
"pattern": "@/pages/**/*.style",
"group": "unknown"
},
{
"pattern": "@/components/**/*.style",
"group": "unknown"
},
{
"pattern": "../**/*.style",
"group": "unknown"
},
{
"pattern": "./**/*.style",
"group": "unknown"
}
],
"pathGroupsExcludedImportTypes": ["react", "unknown"],
"alphabetize": {
"order": "asc",
"caseInsensitive": true
},
"newlines-between": "always"
}
]
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [".ts", ".tsx", ".js"]
},
"import/resolver": {
"typescript": "./tsconfig.json"
}
}
}
11 changes: 11 additions & 0 deletions .github/ISSUE_TEMPLATE/bug-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
---
name: Bug Template
about: Template for describing a bugged process
title: "[BUG] Explain the issue"
labels: ''
assignees: ''

---

### 설명
관련 오류 설명
14 changes: 14 additions & 0 deletions .github/ISSUE_TEMPLATE/task-template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
name: Task Template
about: Template for describing developer tasks
title: "[FRONT-TASK] Create a feature"
labels: ''
assignees: ''

---

### 설명

- [ ] 기능 구현
- [ ] 기능 구현
- [ ] 기능 구현
10 changes: 10 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# 설명

- [GITHUB ISSUE LINK]()
-

# 테스트

-

# Demo
35 changes: 35 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# 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?

# yarn berry
.yarn/*
!.yarn/cache
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/sdks
!.yarn/versions

.env
4 changes: 4 additions & 0 deletions .husky/pre-commit
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#!/usr/bin/env sh
. "$(dirname -- "$0")/_/husky.sh"

npx lint-staged
Loading

0 comments on commit b5269a6

Please sign in to comment.