Skip to content

Commit 29440e6

Browse files
committed
Initial commit
0 parents  commit 29440e6

29 files changed

+12975
-0
lines changed

.commitlintrc.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{ "extends": ["@commitlint/config-conventional"] }

.eslintignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
node_modules
2+
.next
3+
.cache
4+
build
5+
public
6+
dist
7+
coverage
8+
package.json
9+
package-lock.json
10+
yarn.lock
11+
storybook-static

.eslintrc.json

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
{
2+
"plugins": ["prettier"],
3+
"extends": [
4+
"react-app",
5+
"react-app/jest",
6+
"plugin:prettier/recommended",
7+
"prettier/react",
8+
"prettier/flowtype",
9+
"prettier/@typescript-eslint"
10+
],
11+
"rules": {
12+
"no-console": "off"
13+
}
14+
}

.gacprc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"add": false,
3+
"push": false,
4+
"emoji": "emoji",
5+
"editor": false
6+
}

.gitignore

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

.huskyrc.json

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"hooks": {
3+
"pre-commit": "lint-staged",
4+
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
5+
}
6+
}

.lintstagedrc.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"*.{js,ts,css,less,json,md,html,yml,yaml,pcss,jsx,tsx}": [
3+
"prettier --write",
4+
"git add"
5+
],
6+
"package.json": ["yarn format:package"],
7+
"**/*.{js,jsx,tx,tsx}": ["yarn lint"]
8+
}

.prettierignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
.cache
2+
build
3+
node_modules
4+
public
5+
dist
6+
coverage
7+
.next
8+
package.json
9+
package-lock.json
10+
yarn.lock
11+
storybook-static

.prettierrc.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"arrowParens": "avoid",
3+
"bracketSpacing": true,
4+
"jsxBracketSameLine": false,
5+
"jsxSingleQuote": false,
6+
"printWidth": 80,
7+
"proseWrap": "always",
8+
"requirePragma": false,
9+
"semi": true,
10+
"singleQuote": false,
11+
"tabWidth": 2,
12+
"trailingComma": "all",
13+
"useTabs": false,
14+
"endOfLine": "auto"
15+
}

.vscode/settings.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"typescript.tsdk": "node_modules/typescript/lib"
3+
}

0 commit comments

Comments
 (0)