lydell / eslint-plugin-simple-import-sort

Easy autofixable import sorting.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

blankline after last import

undefinederror opened this issue · comments

Is it possible to force a blackline after the last import?

this

import {x} from './x.ts'
import {y} from './y.ts'
interface Foo {
}

into this?

import {x} from './x.ts'
import {y} from './y.ts'

interface Foo {
}

thank you!