Skip to content

Commit e028c6f

Browse files
committed
feat(add): Initial Commit
0 parents  commit e028c6f

File tree

831 files changed

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

831 files changed

+8142
-0
lines changed

.eslintrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"extends": ["next", "prettier"],
3+
"rules": {
4+
"react/no-unescaped-entities": 0,
5+
"import/no-anonymous-default-export": 0
6+
}
7+
}

.gitignore

Lines changed: 81 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
# Dependency directories
2+
node_modules/
3+
jspm_packages/
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# next.js
9+
.next/
10+
/.next/
11+
/out/
12+
out/
13+
14+
# production
15+
/build
16+
17+
# testing
18+
/coverage
19+
20+
# dotenv environment variable files
21+
.env*
22+
23+
# Mac files
24+
.DS_Store
25+
26+
# Optional npm cache directory
27+
.npm
28+
29+
# Yarn 2
30+
yarn-error.log
31+
.pnp/
32+
.pnp.*
33+
.yarn/*
34+
!.yarn/cache
35+
!.yarn/patches
36+
!.yarn/plugins
37+
!.yarn/releases
38+
!.yarn/sdks
39+
!.yarn/versions
40+
41+
# Yarn Integrity file
42+
.yarn-integrity
43+
44+
# Storybook build
45+
storybook-static
46+
47+
# Local Netlify
48+
.netlify
49+
.idea
50+
*.env
51+
52+
# Vercel folder
53+
.vercel
54+
55+
# library folder
56+
.lib
57+
dist
58+
59+
# Compiled binary addons (http://nodejs.org/api/addons.html)
60+
build/Release
61+
62+
# Typescript v1 declaration files
63+
typings/
64+
65+
# Optional eslint cache
66+
.eslintcache
67+
68+
# Logs
69+
logs
70+
*.log
71+
lerna-debug.log
72+
73+
# debug
74+
npm-debug.log*
75+
yarn-debug.log*
76+
yarn-error.log*
77+
78+
#buildsize
79+
size-plugin.json
80+
stats-react.json
81+
stats.html

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.next
2+
node_modules

.prettierrc

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"singleQuote": true,
3+
"semi": true,
4+
"printWidth": 80,
5+
"trailingComma": "all",
6+
"arrowParens": "avoid",
7+
"bracketSpacing": false,
8+
"useTabs": true,
9+
"quoteProps": "consistent"
10+
}
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
 (0)