Skip to content

Commit

Permalink
feat(deps): bump @typescript-eslint/eslint-plugin from 2.18.0 to 2.19…
Browse files Browse the repository at this point in the history
….0 (#581)

Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 2.18.0 to 2.19.0.
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v2.19.0/packages/eslint-plugin)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* feat(typescript): add new rules since 2.19.0

* fix: update peer deps

Co-authored-by: Masafumi Koba <473530+ybiquitous@users.noreply.github.com>
  • Loading branch information
dependabot-preview[bot] and ybiquitous committed Feb 7, 2020
1 parent 0633dc7 commit 7ea433f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 14 deletions.
22 changes: 11 additions & 11 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -33,7 +33,7 @@
"eslint-restricted-globals": "^0.2.0"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "2.18.0",
"@typescript-eslint/eslint-plugin": "2.19.0",
"@typescript-eslint/parser": "2.19.0",
"eslint": "6.8.0",
"eslint-find-rules": "3.4.0",
Expand All @@ -45,8 +45,8 @@
"ybiq": "10.0.0"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">=2.18.0 <3",
"@typescript-eslint/parser": ">=2.18.0 <3",
"@typescript-eslint/eslint-plugin": ">=2.19.0 <3",
"@typescript-eslint/parser": ">=2.19.0 <3",
"eslint": ">=6.8.0 <7",
"prettier": ">=1.19.1 <2",
"typescript": ">=3.7.2 <4"
Expand Down
4 changes: 4 additions & 0 deletions rules/plugins/typescript.js
Expand Up @@ -17,6 +17,8 @@ module.exports = {
"@typescript-eslint/explicit-module-boundary-types": "warn",
"@typescript-eslint/member-ordering": "off",
"@typescript-eslint/naming-convention": "off",
"no-dupe-class-members": "off",
"@typescript-eslint/no-dupe-class-members": "error", // eslint-disable-line sort-keys
"@typescript-eslint/no-dynamic-delete": "warn",
"@typescript-eslint/no-extra-non-null-assertion": "error",
"@typescript-eslint/no-extraneous-class": "error",
Expand All @@ -30,6 +32,7 @@ module.exports = {
"@typescript-eslint/no-require-imports": "error",
"@typescript-eslint/no-throw-literal": "off",
"@typescript-eslint/no-type-alias": "off",
"@typescript-eslint/no-unnecessary-boolean-literal-compare": "off",
"@typescript-eslint/no-unnecessary-condition": "off",
"@typescript-eslint/no-unnecessary-qualifier": "off",
"@typescript-eslint/no-unnecessary-type-arguments": "off",
Expand All @@ -56,6 +59,7 @@ module.exports = {
"@typescript-eslint/restrict-template-expressions": "off",
"@typescript-eslint/return-await": "off",
"@typescript-eslint/strict-boolean-expressions": "off",
"@typescript-eslint/switch-exhaustiveness-check": "off",
"@typescript-eslint/typedef": "off",
"@typescript-eslint/unbound-method": "off",
"@typescript-eslint/unified-signatures": "error",
Expand Down

0 comments on commit 7ea433f

Please sign in to comment.