Skip to content
This repository was archived by the owner on Mar 29, 2020. It is now read-only.

Commit 2a985c1

Browse files
committed
feat(typescript): add new eslint-plugin-typescript rules
1 parent 10980bc commit 2a985c1

File tree

1 file changed

+2
-1
lines changed
  • packages/eslint-config-typescript

1 file changed

+2
-1
lines changed

packages/eslint-config-typescript/index.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,13 +57,14 @@ module.exports = {
5757
'typescript/no-array-constructor': 'error',
5858
'typescript/no-empty-interface': 'off', // TSLint is better at this
5959
'typescript/no-explicit-any': 'off', // TSLint is better at this
60+
'typescript/no-inferrable-types': 'off', // TSLint is better at this
6061
'typescript/no-namespace': 'off', // TSLint is better at this
6162
'typescript/no-non-null-assertion': 'off', // TSLint is better at this
6263
'typescript/no-parameter-properties': 'off', // TSLint is better at this
6364
'typescript/no-triple-slash-reference': 'off', // TSLint is better at this
6465
'typescript/no-type-alias': 'off', // TSLint is better at this
65-
'typescript/no-var-requires': 'off', // TSLint is better at this
6666
'typescript/no-unused-vars': 'error',
67+
'typescript/no-var-requires': 'off', // TSLint is better at this
6768
'typescript/no-use-before-define': [
6869
'error',
6970
{functions: true, classes: true, variables: true},

0 commit comments

Comments
 (0)