• 如果模块有多行的属性, 关闭标签时新建一行. eslint:

    1. // bad
    2. <Foo
    3. baz="baz" />
    4. // good
    5. bar="bar"
    6. baz="baz"
    7. />