Skip to content

Commit

Permalink
Modified consistent type import rule
Browse files Browse the repository at this point in the history
fixStyle: 'inline-type-imports'
  • Loading branch information
SanjeevLakhwani committed Aug 26, 2024
1 parent 86ec9a5 commit cc7392f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .eslintrc.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module.exports = {
'no-unused-vars': 'off', // disable no-unused-vars since @typescript-eslint/no-unused-vars does the same
'@typescript-eslint/no-unused-vars': ['error', { argsIgnorePattern: '^_' }], // enable @typescript-eslint/no-unused-vars
'@typescript-eslint/no-non-null-assertion': 'off',
'@typescript-eslint/consistent-type-imports': 'error',
'@typescript-eslint/consistent-type-imports': ['error', { fixStyle: 'inline-type-imports' }],
'comma-dangle': [
'error',
{
Expand Down

0 comments on commit cc7392f

Please sign in to comment.