Skip to content

Commit

Permalink
build: Fix up eslint node rule for TypeScript
Browse files Browse the repository at this point in the history
  • Loading branch information
malept committed Jun 25, 2020
1 parent 18a4049 commit 377d92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.typescript.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ eslintConfig.extends.push('plugin:@typescript-eslint/recommended')
eslintConfig.rules = {
'comma-dangle': ['error', 'only-multiline'],
'no-useless-constructor': 'off',
'node/no-unsupported-features/es-syntax': 'off',
'node/no-unsupported-features/es-syntax': ['error', { ignores: ['modules'] }],
semi: ['error', 'always'],
'space-before-function-paren': ['error', 'never']
}
Expand Down

0 comments on commit 377d92b

Please sign in to comment.