Skip to content

Commit

Permalink
Merge pull request #571 from nextcloud/fix/typescript-rules
Browse files Browse the repository at this point in the history
fix(typescript): Allow generic type parameters on function calls
  • Loading branch information
susnux committed Jun 27, 2023
2 parents b8063ee + 6ba7e9a commit 601a834
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions parts/typescript.js
Expand Up @@ -8,6 +8,10 @@ module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {},
rules: {
// allow for generic type parameters on function calls
'func-call-spacing': 'off',
'@typescript-eslint/func-call-spacing': 'error',
//
'n/no-missing-import': 'off',
'import/extensions': 'off',
'jsdoc/check-tag-names': [
Expand Down

0 comments on commit 601a834

Please sign in to comment.