Skip to content
This repository has been archived by the owner on Sep 20, 2024. It is now read-only.

Update dependencies and replace request package #2239

Open
wants to merge 3 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
37,057 changes: 22,356 additions & 14,701 deletions package-lock.json

Large diffs are not rendered by default.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@
"lerna:pack": "lerna run pack"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.11.0",
"eslint-config-standard": "^16.0.3",
"lerna": "^4.0.0",
"mocha": "^9.1.3",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-config-standard": "^17.0.0",
"lerna": "^6.5.1",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"typescript": "^3.7.5"
"typescript": "^4.9.5"
}
}
34 changes: 17 additions & 17 deletions packages/botbuilder-adapter-facebook/.eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
module.exports = {
"extends": "standard",
"rules": {
"semi": [2, "always"],
"indent": [2, 4],
"no-return-await": 0,
"camelcase": 0,
"no-unused-vars": 0,
"@typescript-eslint/indent": 0,
"@typescript-eslint/ban-ts-ignore": 1,
"@typescript-eslint/no-object-literal-type-assertion": 0,
"@typescript-eslint/explicit-member-accessibility": 1,
"space-before-function-paren": [2, {
"named": "never",
"anonymous": "never",
"asyncArrow": "always"
extends: 'standard',
rules: {
semi: [2, 'always'],
indent: [2, 4],
'no-return-await': 0,
camelcase: 0,
'no-unused-vars': 0,
'@typescript-eslint/indent': 0,
'@typescript-eslint/ban-ts-comment': 1,
'@typescript-eslint/no-object-literal-type-assertion': 0,
'@typescript-eslint/explicit-member-accessibility': 1,
'space-before-function-paren': [2, {
named: 'never',
anonymous: 'never',
asyncArrow: 'always'
}],
"template-curly-spacing": [2, "always"]
'template-curly-spacing': [2, 'always']
}
};
};
Loading