Skip to content
This repository was archived by the owner on Jul 14, 2021. It is now read-only.
This repository was archived by the owner on Jul 14, 2021. It is now read-only.

add a tab character after each line import/export #15

@hieunm22

Description

@hieunm22

as title, I detect an issue that every import/export doesn't add a tab character after each line import/export, and a new line character before the curly close bracket. this looks better than current

// original
import { method1, method2, method3, method4 } from 'alphabet'

// format
import { method1,
method2,
method3,
method4 } from 'alphabet'

// expected
import {  // add a new line character after {
  method1,  // tab character at the beginning of line
  method2,
  method3,
  method4
} from 'alphabet'

could you do a little fix for it
Thanks

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions