Skip to content

Commit 8dc434f

Browse files
committed
🔖 v2.0.0
0 parents  commit 8dc434f

File tree

134 files changed

+37959
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

134 files changed

+37959
-0
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules/
2+
build

.eslintrc.cjs

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
module.exports = {
2+
root: true,
3+
env: {
4+
browser: true,
5+
node: true,
6+
es2021: true,
7+
jest: true,
8+
},
9+
parser: '@typescript-eslint/parser',
10+
extends: ['eslint:recommended', 'plugin:react/recommended'],
11+
parserOptions: {
12+
ecmaFeatures: {
13+
jsx: true,
14+
},
15+
ecmaVersion: 12,
16+
sourceType: 'module',
17+
},
18+
plugins: ['react', '@typescript-eslint'],
19+
rules: {
20+
'react/react-in-jsx-scope': 'off',
21+
'react/prop-types': 'off',
22+
'no-unused-vars': 'warn',
23+
'@typescript-eslint/no-empty-interface': 'off',
24+
'react/jsx-key': 'warn',
25+
'react/no-unescaped-entities': 'warn',
26+
},
27+
};

.github/CODEOWNERS

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# review when someone opens a pull request.
2+
3+
- @JonghunAn @99-zziy @wooyoung0830

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# IDE -VS Code
2+
.vscode/*
3+
.vscode/settings.json
4+
.vscode/tasks.json
5+
.vscode/launch.json
6+
.vscode/extensions.json
7+
# coimpiled output
8+
node_modules/
9+
build/
10+
yarn.lock
11+
12+
# IntelliJ setting file
13+
./idea
14+
15+
# OS
16+
.DS_Store
17+
18+
# dotenv environment variables file
19+
.env*
20+
21+
22+
# End of https://www.toptal.com/developers/gitignore/api/react,node

.husky/pre-commit

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/usr/bin/env sh
2+
. "$(dirname -- "$0")/_/husky.sh"
3+
4+
npm run lint
5+
npm run format

.husky/pre-push

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
# 추후 테스트 스크립트 추가
5+
# npm run test:unitq

.prettierrc

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"singleQuote": true,
3+
"trailingComma": "es5",
4+
"tabWidth": 4,
5+
"printWidth": 120,
6+
"arrowParens": "always",
7+
"bracketSpacing": true,
8+
"embeddedLanguageFormatting": "auto",
9+
"htmlWhitespaceSensitivity": "css",
10+
"insertPragma": false,
11+
"proseWrap": "preserve",
12+
"semi": true,
13+
"useTabs": false
14+
}

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# 국내 최초 빅데이터 연합 동아리 BOAZ

0 commit comments

Comments
 (0)