Skip to content

Commit adf7815

Browse files
fix: update dependencies to fix vulnerabilities
1 parent e3b50ef commit adf7815

File tree

10 files changed

+22964
-7360
lines changed

10 files changed

+22964
-7360
lines changed

.eslintrc.js

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
module.exports = {
2-
parser: "@typescript-eslint/parser",
3-
extends: [
4-
"plugin:@typescript-eslint/recommended",
5-
"prettier/@typescript-eslint",
6-
"plugin:prettier/recommended",
7-
],
2+
parser: '@typescript-eslint/parser',
3+
extends: ['plugin:prettier/recommended'],
84
parserOptions: {
95
ecmaVersion: 2018,
10-
sourceType: "module",
6+
sourceType: 'module',
117
},
128
rules: {
13-
'@typescript-eslint/explicit-function-return-type': 'off'
14-
}
9+
'@typescript-eslint/explicit-function-return-type': 'off',
10+
},
1511
};

.husky/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
_

.husky/commit-msg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if ! [ $CI ]; then
2+
npx --no-install commitlint --edit $1 --extends @commitlint/config-conventional
3+
fi

.husky/pre-commit

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
if ! [ $CI ]; then
2+
npm run lint
3+
fi

0 commit comments

Comments
 (0)