Skip to content

Commit

Permalink
Angular/ESLint: reactivate consistent-type-definitions rule
Browse files Browse the repository at this point in the history
  • Loading branch information
qmonmert committed Nov 2, 2024
1 parent 76d3fdb commit a3d3805
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,6 @@ export default tseslint.config(
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/no-unsafe-member-access': 'off',
'@typescript-eslint/no-unsafe-argument': 'off',
'@typescript-eslint/consistent-type-definitions': 'off',
'@typescript-eslint/use-unknown-in-catch-callback-variable': 'off',
'@typescript-eslint/no-unsafe-call': 'off',
'@typescript-eslint/restrict-template-expressions': ['error', { allowNumber: true }],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { map } from 'rxjs/operators';

import { Login } from '../login/login.model';

type JwtToken = {
interface JwtToken = {
id_token: string;
};

Expand Down

0 comments on commit a3d3805

Please sign in to comment.