Skip to content

Commit

Permalink
Format
Browse files Browse the repository at this point in the history
  • Loading branch information
ota-meshi committed Nov 18, 2020
1 parent d0c4ccf commit 0d32de1
Showing 1 changed file with 4 additions and 7 deletions.
Expand Up @@ -1092,8 +1092,7 @@ import { Value4 } from 'default_and_named_import';
},
{
// https://github.com/typescript-eslint/typescript-eslint/issues/2775
code:
`
code: `
import Default, * as Rest from 'module';
const a: Rest.A = '';
`,
Expand All @@ -1113,8 +1112,7 @@ import Default from 'module';
],
},
{
code:
`
code: `
import Default, * as Rest from 'module';
const a: Default = '';
`,
Expand All @@ -1134,8 +1132,7 @@ import * as Rest from 'module';
],
},
{
code:
`
code: `
import Default, * as Rest from 'module';
const a: Default = '';
const b: Rest.A = '';
Expand All @@ -1155,6 +1152,6 @@ import type Default from 'module';
column: 9,
},
],
}
},
],
});

0 comments on commit 0d32de1

Please sign in to comment.