Skip to content

Commit 3a802d9

Browse files
committed
update deps
1 parent 5067ecf commit 3a802d9

28 files changed

+4865
-3216
lines changed

.eslintrc

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"env": {
3+
"node": true
4+
},
5+
"parser": "@typescript-eslint/parser",
6+
"parserOptions": {
7+
"project": "./tsconfig.json",
8+
"sourceType": "module"
9+
},
10+
"ignorePatterns": ["dist/test/*", "typedoc.js"],
11+
"plugins": ["@typescript-eslint", "prefer-arrow", "import"],
12+
"extends": [
13+
"plugin:@typescript-eslint/eslint-recommended",
14+
"plugin:@typescript-eslint/recommended",
15+
"prettier",
16+
"prettier/@typescript-eslint"
17+
],
18+
"root": true,
19+
"rules": {
20+
"indent": ["error", 4],
21+
"@typescript-eslint/interface-name-prefix": "off",
22+
"@typescript-eslint/explicit-function-return-type": "off",
23+
"@typescript-eslint/no-explicit-any": "off",
24+
"@typescript-eslint/no-unused-vars": "off",
25+
"@typescript-eslint/no-empty-interface": "off"
26+
}
27+
}

.github/FUNDING.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# These are supported funding model platforms
2+
3+
custom: ['https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=M754R7Y5FE6DN&source=url']
Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
---
2+
3+
name: Bug report
4+
about: Create a report to help us improve
5+
title: ''
6+
labels: ''
7+
assignees: ''
8+
---**Describe the bug**
9+
A clear and concise description of what the bug is.
10+
11+
**To Reproduce**
12+
Steps to reproduce the behavior:
13+
14+
1. Go to '...'
15+
2. Click on '....'
16+
3. Scroll down to '....'
17+
4. See error
18+
19+
**Expected behavior**
20+
A clear and concise description of what you expected to happen.
21+
22+
**Screenshots**
23+
If applicable, add screenshots to help explain your problem.
24+
25+
**OS (please complete the following information):**
26+
27+
- OS: [e.g. OSX, Linux...]
28+
- Node Version
29+
30+
**Additional context**
31+
Add any other context about the problem here.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
A clear and concise description of what the problem is. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered.
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88

99
strategy:
1010
matrix:
11-
node-version: [8.x, 10.x, 12.x]
11+
node-version: [10.x, 11.x, 12.x, 13.x]
1212

1313
steps:
1414
- uses: actions/checkout@v1
@@ -26,6 +26,6 @@ jobs:
2626
uses: codecov/codecov-action@v1.0.5
2727
with:
2828
token: ${{ secrets.CODECOV_TOKEN }}
29-
file: ./coverage/clover.xml
29+
file: ./coverage/coverage-final.json
3030
fail_ci_if_error: true
3131
CI: true

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
node_modules/
2-
lib/
2+
dist/
33
coverage

.npmignore

Lines changed: 13 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
src
2-
docs
3-
jest.config.js
4-
tsconfig.*
5-
tslint.*
6-
typedoc.js
7-
coverage
1+
.DS_Store
2+
coverage/
3+
docs/
4+
src/
5+
dist/test/
6+
resources/
87
.prettierrc
8+
.prettierignore
9+
.gitignore
10+
tsconfig.json
11+
typedoc.js
912
yarn.lock
1013
.vscode
11-
*.tgz
12-
.github
1314
renovate.json
14-
.DS_Store
15+
.eslintrc
16+
.github
17+
*.tgz

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
**/*.d.ts
2+
**/*.js

.vscode/settings.json

100755100644
Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,7 @@
11
{
22
"typescript.tsdk": "./node_modules/typescript/lib",
3-
"editor.wordWrapColumn": 125,
4-
"javascript.preferences.importModuleSpecifier": "relative",
5-
"javascript.preferences.quoteStyle": "single",
6-
"typescript.preferences.importModuleSpecifier": "relative",
7-
"typescript.preferences.quoteStyle": "single",
8-
"javascript.format.enable": false,
9-
"typescript.format.enable": true,
10-
"editor.formatOnSave": true,
11-
"tslint.autoFixOnSave": true,
12-
"formatFiles.excludePattern": "**/build/**,**/node_modules,**/.vscode,**/dist/**,**/.chrome"
3+
"eslint.validate": ["typescript", "javascript"],
4+
"editor.codeActionsOnSave": {
5+
"source.fixAll.eslint": true
6+
}
137
}

0 commit comments

Comments
 (0)