Skip to content

Commit ac23162

Browse files
committedDec 19, 2022
🎉 feat : init
0 parents  commit ac23162

File tree

435 files changed

+5906
-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.

435 files changed

+5906
-0
lines changed
 

‎.eslintrc.js

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module.exports = {
2+
plugins: ['@typescript-eslint'],
3+
extends: [
4+
'next/core-web-vitals',
5+
'plugin:@typescript-eslint/recommended',
6+
'prettier',
7+
],
8+
rules: {
9+
// ESLint 규칙을 지정합니다. extends에서 지정된 규칙을 덮어 쓸수도 있습니다.
10+
'react/react-in-jsx-scope': 'off',
11+
'react/prop-types': 'off',
12+
'@typescript-eslint/explicit-module-boundary-types': 'off',
13+
'@typescript-eslint/ban-types': 'off',
14+
'@typescript-eslint/no-empty-interface': 'off',
15+
'@typescript-eslint/no-namespace': 'off',
16+
},
17+
};

‎.gitignore

+55
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,55 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
.pnp.*
8+
.yarn/*
9+
!.yarn/cache
10+
!.yarn/patches
11+
!.yarn/plugins
12+
!.yarn/releases
13+
!.yarn/sdks
14+
!.yarn/versions
15+
16+
17+
18+
# testing
19+
/coverage
20+
21+
# next.js
22+
/.next/
23+
/out/
24+
25+
# production
26+
/build
27+
28+
# misc
29+
.DS_Store
30+
*.pem
31+
32+
# debug
33+
npm-debug.log*
34+
yarn-debug.log*
35+
yarn-error.log*
36+
.pnpm-debug.log*
37+
38+
# local env files
39+
.env*.local
40+
41+
# vercel
42+
.vercel
43+
44+
# typescript
45+
*.tsbuildinfo
46+
next-env.d.ts
47+
48+
# dotenv environment variable files
49+
.env
50+
.env.development.local
51+
.env.test.local
52+
.env.production.local
53+
.env.local
54+
55+

0 commit comments

Comments
 (0)
Please sign in to comment.