Skip to content

Commit

Permalink
fix(eslint-plugin-experience): skip no-topromise
Browse files Browse the repository at this point in the history
  • Loading branch information
splincode committed Nov 10, 2023
1 parent 086703a commit a887548
Showing 1 changed file with 9 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,14 @@ module.exports = {
'rxjs/throw-error': 'error',
},
},
{
files: ['**/schematics/**/*.spec.ts'],
parser: '@typescript-eslint/parser',
plugins: ['rxjs'],
extends: ['plugin:rxjs/recommended'],
rules: {
'rxjs/no-topromise': 'off',
},
},
],
};

0 comments on commit a887548

Please sign in to comment.