Skip to content

Commit

Permalink
Upgrade all packages
Browse files Browse the repository at this point in the history
  • Loading branch information
stevenguh committed Jun 18, 2021
1 parent 9735866 commit 44ecaaf
Show file tree
Hide file tree
Showing 26 changed files with 3,967 additions and 8,902 deletions.
26 changes: 26 additions & 0 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
/**@type {import('eslint').Linter.Config} */
// eslint-disable-next-line no-undef
module.exports = {
root: true,
env: {
"es6": true,
"node": true,
"mocha": true,
},
parser: '@typescript-eslint/parser',
plugins: [
'@typescript-eslint',
],
extends: [
'eslint:recommended',
'plugin:@typescript-eslint/recommended',
],
rules: {
'semi': [2, "always"],
'@typescript-eslint/no-unused-vars': 0,
'@typescript-eslint/no-var-requires': 0,
'@typescript-eslint/no-explicit-any': 0,
'@typescript-eslint/explicit-module-boundary-types': 0,
'@typescript-eslint/no-non-null-assertion': 0,
}
};
19 changes: 0 additions & 19 deletions .eslintrc.json

This file was deleted.

2 changes: 1 addition & 1 deletion .vscodeignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ out/**
node_modules/**

.gitignore
.eslintrc.json
.eslintrc.js
tsconfig.json
tslint.json
webpack.config.js
Loading

0 comments on commit 44ecaaf

Please sign in to comment.