diff --git a/base/CHANGELOG.md b/base/CHANGELOG.md index d54f3d4..31a2065 100644 --- a/base/CHANGELOG.md +++ b/base/CHANGELOG.md @@ -9,6 +9,7 @@ - Require [`@typescript-eslint/parser`](https://www.npmjs.com/package/@typescript-eslint/parser) `^3.0.0` as a peer dependency - Turn on [`@typescript-eslint/naming-convention`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/naming-convention.md) - Turn on [`@typescript-eslint/restrict-template-expressions`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/restrict-template-expressions.md) +- Turn on [`@typescript-eslint/unbound-method`](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/docs/rules/unbound-method.md) ## v0.1.0 diff --git a/base/index.js b/base/index.js index 54c0be7..d44045e 100644 --- a/base/index.js +++ b/base/index.js @@ -56,6 +56,7 @@ module.exports = { '@typescript-eslint/restrict-template-expressions': ['error', { allowNumber: true }], '@typescript-eslint/promise-function-async': 'error', '@typescript-eslint/strict-boolean-expressions': 'error', + '@typescript-eslint/unbound-method': ['error', { ignoreStatic: true }], }, }, ],