Skip to content

Commit c2d61f9

Browse files
committed
chore: 🎉 initial commit
0 parents  commit c2d61f9

37 files changed

+4776
-0
lines changed

.editorconfig

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# https://editorconfig.org
2+
3+
root = true
4+
5+
[*]
6+
charset = utf-8
7+
indent_style = space
8+
indent_size = 2
9+
end_of_line = lf
10+
insert_final_newline = true
11+
trim_trailing_whitespace = true
12+
13+
[*.md]
14+
insert_final_newline = false
15+
trim_trailing_whitespace = false

.gitattributes

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# prettier v2 dictates LF
2+
# https://prettier.io/docs/en/options.html#end-of-line
3+
* text=auto eol=lf
4+
5+
.vscode/*.json linguist-language=jsonc
6+
tslint.json linguist-language=jsonc
7+
tsconfig.json linguist-language=jsonc
8+
tsconfig.*.json linguist-language=jsonc

.gitignore

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Logs
2+
logs
3+
*.log
4+
npm-debug.log*
5+
yarn-debug.log*
6+
yarn-error.log*
7+
pnpm-debug.log*
8+
lerna-debug.log*
9+
10+
node_modules
11+
dist
12+
dist-ssr
13+
*.local
14+
15+
# Editor directories and files
16+
.vscode/*
17+
!.vscode/extensions.json
18+
.idea
19+
.DS_Store
20+
*.suo
21+
*.ntvs*
22+
*.njsproj
23+
*.sln
24+
*.sw?

.husky/commit-msg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx --no -- commitlint --edit ${1}

.husky/pre-commit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
npx lint-staged

.lintstagedrc

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"*.{js,ts,vue,md,html,css}": ["prettier --write", "git add"]
3+
}

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
package-lock=false

.nvmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v22.10.0

.prettierrc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
{
2+
"semi": false,
3+
"singleQuote": true,
4+
"printWidth": 80,
5+
"trailingComma": "none",
6+
"arrowParens": "avoid"
7+
}

.release-it.json

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
{
2+
"git": {
3+
"tagName": "v${version}",
4+
"commitMessage": "chore: :bookmark: release ${version}"
5+
},
6+
"github": {
7+
"release": false
8+
},
9+
"npm": {
10+
"publish": false
11+
},
12+
"plugins": {
13+
"@release-it/conventional-changelog": {
14+
"infile": "CHANGELOG.md",
15+
"preset": {
16+
"name": "conventionalcommits",
17+
"type": [
18+
{ "type": "feat", "section": "Features" },
19+
{ "type": "fix", "section": "Bug Fixes" }
20+
]
21+
}
22+
}
23+
}
24+
}

0 commit comments

Comments
 (0)