Skip to content

Commit 7e46eeb

Browse files
committed
init
0 parents  commit 7e46eeb

22 files changed

+4838
-0
lines changed

.eslintrc.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
module.exports = {
2+
parser: '@typescript-eslint/parser',
3+
extends: [
4+
'plugin:@typescript-eslint/recommended',
5+
'prettier/@typescript-eslint',
6+
'plugin:prettier/recommended',
7+
// "posva"
8+
],
9+
parserOptions: {
10+
ecmaVersion: 2018,
11+
// allows `import`
12+
sourceType: 'module',
13+
},
14+
rules: {
15+
'@typescript-eslint/explicit-function-return-type': 'off',
16+
},
17+
// "env": {
18+
// "jest": true
19+
// }
20+
}

.github/CODE_OF_CONDUCT.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Contributor Code of Conduct
2+
3+
As contributors and maintainers of this project, we pledge to respect all people who contribute through reporting issues, posting feature requests, updating documentation, submitting pull requests or patches, and other activities.
4+
5+
We are committed to making participation in this project a harassment-free experience for everyone, regardless of level of experience, gender, gender identity and expression, sexual orientation, disability, personal appearance, body size, race, age, or religion.
6+
7+
Examples of unacceptable behavior by participants include the use of sexual language or imagery, derogatory comments or personal attacks, trolling, public or private harassment, insults, or other unprofessional conduct.
8+
9+
Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct. Project maintainers who do not follow the Code of Conduct may be removed from the project team.
10+
11+
Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by opening an issue or contacting one or more of the project maintainers.
12+
13+
This Code of Conduct is adapted from the [Contributor Covenant](http://contributor-covenant.org), version 1.0.0, available at [http://contributor-covenant.org/version/1/0/0/](http://contributor-covenant.org/version/1/0/0/)

.github/CONTRIBUTING.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Contributing
2+
3+
Contributions are welcome and will be fully credited!
4+
5+
We accept contributions via Pull Requests on [Github](https://github.com/{{ githubAccount }}/{{ name }}).
6+
7+
## Pull Requests
8+
9+
Here are some guidelines to make the process smoother:
10+
11+
- **Add a test** - New features and bugfixes need tests. If you find it difficult to test, please tell us in the pull request and we will try to help you!
12+
- **Document any change in behaviour** - Make sure the `README.md` and any other relevant documentation are kept up-to-date.
13+
- **Run `npm test` locally** - This will allow you to go faster
14+
- **One pull request per feature** - If you want to do more than one thing, send multiple pull requests.
15+
- **Send coherent history** - Make sure your commits message means something
16+
- **Consider our release cycle** - We try to follow [SemVer v2.0.0](http://semver.org/). Randomly breaking public APIs is not an option.
17+
18+
## Creating issues
19+
20+
### Bug reports
21+
22+
Always try to provide as much information as possible. If you are reporting a bug, try to provide a repro on jsfiddle.net (or anything else) or a stacktrace at the very least. This will help us check the problem quicker.
23+
24+
### Feature requests
25+
26+
Lay out the reasoning behind it and propose an API for it. Ideally, you should have a practical example to prove the utility of the feature you're requesting.

.github/ISSUE_TEMPLATE.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
<!--
2+
IMPORTANT: Please provide as much information as possible:
3+
4+
- Reporting a bug: if possible provide a repro on jsfiddle.net or a stacktrace at the very least
5+
6+
- Feature request: lay out the reasoning behind it and propose an API for it
7+
8+
-->

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
<!--
2+
Please make sure to read the Pull Request Guidelines:
3+
https://github.com/vuejs/vue/blob/dev/.github/CONTRIBUTING.md#Pull-Request
4+
-->
5+
6+
<!-- PULL REQUEST TEMPLATE -->
7+
<!-- (Update "[ ]" to "[x]" to check a box) -->
8+
9+
**What kind of change does this PR introduce?** (check at least one)
10+
11+
- [ ] Bugfix
12+
- [ ] Feature
13+
- [ ] Code style update
14+
- [ ] Refactor
15+
- [ ] Build-related changes
16+
- [ ] Other, please describe:
17+
18+
**Does this PR introduce a breaking change?** (check one)
19+
20+
- [ ] Yes
21+
- [ ] No
22+
23+
If yes, please describe the impact and migration path for existing applications:
24+
25+
**The PR fulfills these requirements:**
26+
27+
- [ ] When resolving a specific issue, it's referenced in the PR's title (e.g. `fix #xxx[,#xxx]`, where "xxx" is the issue number)
28+
- [ ] All tests are passing
29+
- [ ] New/updated tests are included
30+
31+
If adding a **new feature**, the PR's description includes:
32+
33+
- [ ] A convincing reason for adding this feature (to avoid wasting your time, it's best to open a suggestion issue first and wait for approval before working on it)
34+
35+
**Other information:**

.github/funding.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
github: posva
2+
patreon: posva
3+
custom: https://www.paypal.me/posva

.github/settings.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
labels:
2+
- name: bug
3+
color: ee0701
4+
- name: contribution welcome
5+
color: 0e8a16
6+
- name: discussion
7+
color: 4935ad
8+
- name: docs
9+
color: 8be281
10+
- name: enhancement
11+
color: a2eeef
12+
- name: good first issue
13+
color: 7057ff
14+
- name: help wanted
15+
color: 008672
16+
- name: question
17+
color: d876e3
18+
- name: wontfix
19+
color: ffffff
20+
- name: WIP
21+
color: ffffff
22+
- name: need repro
23+
color: c9581c
24+
- name: feature request
25+
color: fbca04

.gitignore

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
node_modules
2+
coverage
3+
npm-debug.log
4+
yarn-error.log
5+
.nyc_output
6+
.checklist.md
7+
coverage.lcov
8+
dist
9+
package-lock.json
10+
.DS_Store

.prettierrc.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = {
2+
semi: false,
3+
trailingComma: 'es5',
4+
singleQuote: true,
5+
}

.release-it.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
{
2+
"src": {
3+
"tagName": "v%s",
4+
"commitMessage": "chore(release): %s"
5+
},
6+
"github": {
7+
"release": true,
8+
"releaseName": "🚀 Release %s",
9+
"tokenRef": "GITHUB_TOKEN"
10+
},
11+
"npm": {
12+
"publish": true
13+
},
14+
"changelogCommand": "git log --pretty=format:'* %s (%h)' [REV_RANGE]"
15+
}

0 commit comments

Comments
 (0)