Skip to content

Commit

Permalink
Merge 7e99408 into 1c5381d
Browse files Browse the repository at this point in the history
  • Loading branch information
AllenLiuxt committed Aug 14, 2022
2 parents 1c5381d + 7e99408 commit 7168b44
Show file tree
Hide file tree
Showing 31 changed files with 5,234 additions and 2,086 deletions.
8 changes: 5 additions & 3 deletions .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,12 @@ module.exports = {
'@typescript-eslint'
],
'env': {
'es2020': true,
'browser': true,
'commonjs': true,
'es6': true,
'node': true
// 'es6': true,
'node': true,
'mocha': true
},
'parserOptions': {
'ecmaFeatures': {'jsx': true},
Expand All @@ -29,7 +31,7 @@ module.exports = {
'guard-for-in': 'off',
'no-throw-literal': 'off',
'prefer-promise-reject-errors': 'off',
'eqeqeq': 'error',
'eqeqeq': [ 'error', 'smart' ],
'no-else-return': 'error',
'no-labels': 'error',
'no-return-assign': 'error',
Expand Down
4 changes: 2 additions & 2 deletions .nycrc
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@
"html",
"text"
],
"sourceMap": false,
"sourceMap": true,
"instrument": true
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
"html",
"text"
],
"sourceMap": false,
"sourceMap": true,
"instrument": true
}
}

0 comments on commit 7168b44

Please sign in to comment.