Skip to content

Commit c74e65e

Browse files
committed
initial commit
0 parents  commit c74e65e

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

85 files changed

+16251
-0
lines changed

Diff for: .editorconfig

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
root = true
2+
3+
[*]
4+
end_of_line = lf
5+
insert_final_newline = true
6+
trim_trailing_whitespace = true
7+
indent_style = space
8+
indent_size = 2
9+
10+
[*.md]
11+
trim_trailing_whitespace = false

Diff for: .gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

Diff for: .github/FUNDING.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
github: kiaking

Diff for: .github/ISSUE_TEMPLATE/bug_report.md

+36
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
name: Bug report
3+
about: Create a report to help us improve
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
#### Describe the bug
11+
12+
A clear and concise description of what the bug is.
13+
14+
#### Steps to reproduce the bug
15+
16+
1. Define models [...]
17+
2. Create data [...]
18+
3. Retrieve data [...]
19+
4. See error
20+
21+
#### Expected behaviour
22+
23+
A clear and concise description of what you expected to happen.
24+
25+
#### Versions
26+
27+
- Vuex ORM: 0.#.#
28+
- Vue: 2.#.#
29+
30+
#### Link to minimal reproduction
31+
32+
If applicable, add a minimal demo link to help explain your problem. Some options for that are [CodePen](https://codepen.io/), [CodeSandbox](https://codesandbox.io/), [JS Bin](https://jsbin.com/) or [JSFiddle](https://jsfiddle.net/).
33+
34+
#### Additional context
35+
36+
Add any other context about the bug here.

Diff for: .github/ISSUE_TEMPLATE/feature_request.md

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
title: ''
5+
labels: ''
6+
assignees: ''
7+
8+
---
9+
10+
#### Is your feature request related to a problem? Please describe...
11+
12+
A clear and concise description of what the problem is.
13+
14+
#### Describe the solution you'd like
15+
16+
A clear and concise description of what you want to happen.
17+
18+
#### Describe alternatives you've considered
19+
20+
A clear and concise description of any alternative solutions or features you've considered.
21+
22+
#### Additional context
23+
24+
Add any other context or screenshots about the feature request here.

Diff for: .github/PULL_REQUEST_TEMPLATE.md

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<!-- PULL REQUEST TEMPLATE -->
2+
3+
<!-- Please describe a summary of this PR. -->
4+
5+
#### Type of PR:
6+
7+
- [ ] Bugfix
8+
- [ ] Feature
9+
- [ ] Refactor
10+
- [ ] Code style update
11+
- [ ] Build-related changes
12+
- [ ] Test
13+
- [ ] Documentation
14+
- [ ] Other, please describe:
15+
16+
#### Breaking changes:
17+
18+
- [ ] No
19+
- [ ] Yes
20+
21+
### Details
22+
23+
<!-- Please describe the details of the PR. -->

Diff for: .gitignore

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
/.nyc_output
2+
/.tmp
3+
/coverage
4+
/dist
5+
/docs/.vuepress/dist
6+
/docs/node_modules
7+
/node_modules
8+
/temp
9+
.idea/*
10+
.vscode/*
11+
yarn-error.log

Diff for: .prettierrc

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
{
2+
"arrowParens": "always",
3+
"endOfLine": "lf",
4+
"printWidth": 80,
5+
"semi": false,
6+
"singleQuote": true,
7+
"trailingComma": "none"
8+
}

Diff for: .travis.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
language: node_js
2+
node_js:
3+
- "10"
4+
- "12"
5+
script:
6+
- npm run lint:fail
7+
- npm run coverage
8+
- cat ./coverage/lcov.info | ./node_modules/.bin/codecov

0 commit comments

Comments
 (0)