Skip to content

Commit ddd4fc4

Browse files
committed
clean up repo, bump version
1 parent 3ed9e00 commit ddd4fc4

11 files changed

Lines changed: 6616 additions & 317 deletions

.eslintrc.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
2+
{
3+
"root": true,
4+
"parser": "@typescript-eslint/parser",
5+
"plugins": ["@typescript-eslint"],
6+
"env": {
7+
"es6": true,
8+
"node": true,
9+
"mocha": true
10+
},
11+
"extends": [
12+
"eslint:recommended",
13+
"plugin:@typescript-eslint/eslint-recommended",
14+
"plugin:@typescript-eslint/recommended"
15+
],
16+
"parserOptions": {
17+
"ecmaVersion": 2018,
18+
"sourceType": "module"
19+
},
20+
"rules": {
21+
"no-console": "off",
22+
"linebreak-style": "off",
23+
"quotes": [
24+
"error",
25+
"double",
26+
{ "allowTemplateLiterals": true }
27+
],
28+
"keyword-spacing": ["error", { "before": true }],
29+
"space-before-blocks": ["error"],
30+
"@typescript-eslint/explicit-module-boundary-types": "off"
31+
}
32+
}

.nycrc.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
{
2+
"cache": false,
3+
"check-coverage": true,
4+
"extension": [
5+
".ts"
6+
],
7+
"include": [
8+
"**/src/*.ts"
9+
],
10+
"reporter": [
11+
"cobertura",
12+
"text-summary"
13+
],
14+
"statements": 90,
15+
"branches": 90,
16+
"functions": 90,
17+
"lines": 90
18+
}

0 commit comments

Comments
 (0)