Skip to content

Commit 2d8a41e

Browse files
committed
feat: 🎉 initial commit
0 parents  commit 2d8a41e

17 files changed

+8390
-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: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

.eslintrc.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2020": true
5+
},
6+
"extends": ["airbnb-base"],
7+
"parserOptions": {
8+
"ecmaVersion": 11,
9+
"sourceType": "module"
10+
},
11+
"rules": {}
12+
}

.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: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
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+
25+
# Optional npm cache directory
26+
.npm
27+
28+
# Yarn
29+
yarn-error.log
30+
.pnp/
31+
.pnp.js
32+
33+
# Yarn Integrity file
34+
.yarn-integrity
35+
36+
# Storybook build
37+
storybook-static
38+
39+
# Local Netlify
40+
.netlify
41+
.idea
42+
*.env
43+
44+
# Vercel folder
45+
.vercel
46+
47+
# library folder
48+
.lib
49+
dist
50+
51+
# Compiled binary addons (http://nodejs.org/api/addons.html)
52+
build/Release
53+
54+
# Typescript v1 declaration files
55+
typings/
56+
57+
# Optional eslint cache
58+
.eslintcache
59+
60+
# Logs
61+
logs
62+
*.log
63+
lerna-debug.log
64+
65+
# debug
66+
npm-debug.log*
67+
yarn-debug.log*
68+
yarn-error.log*

.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 lint:package"],
7+
"**/*.{js,jsx}": ["yarn lint"]
8+
}

.prettierignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
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

.prettierrc

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

.vscode/launch.json

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// A launch configuration that launches the extension inside a new window
2+
// Use IntelliSense to learn about possible attributes.
3+
// Hover to view descriptions of existing attributes.
4+
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
5+
{
6+
"version": "0.2.0",
7+
"configurations": [
8+
{
9+
"name": "Extension",
10+
"type": "extensionHost",
11+
"request": "launch",
12+
"runtimeExecutable": "${execPath}",
13+
"args": ["--extensionDevelopmentPath=${workspaceFolder}"]
14+
}
15+
]
16+
}

0 commit comments

Comments
 (0)