diff --git a/index.js b/index.js index 6944304..a123452 100644 --- a/index.js +++ b/index.js @@ -49,6 +49,7 @@ module.exports = { 'no-case-with-or': true, 'no-collection-size-mischeck': true, 'no-dead-store': true, + 'no-duplicate-in-composite': true, 'no-duplicate-string': true, 'no-duplicated-branches': true, 'no-element-overwrite': true, @@ -58,13 +59,17 @@ module.exports = { 'no-identical-functions': true, 'no-ignored-initial-value': true, 'no-ignored-return': true, + 'no-in-misuse': true, 'no-misleading-array-reverse': true, 'no-redundant-boolean': true, + 'no-redundant-jump': true, 'no-small-switch': true, 'no-unconditional-jump': true, + 'no-undefined-argument': true, 'no-unused-array': true, 'no-useless-cast': true, 'no-useless-increment': true, + 'prefer-promise-shorthand': true, 'use-type-alias': true, }, };