当我不希望视觉代码自动格式化时,它会换行

时间:2018-10-29 02:56:37

标签: javascript reactjs visual-studio-code

当我在Visual Code中使用格式文档(请注意, Visual Code ,而不是Visual Studio)时,它将更改我的代码,如下所示:

自动格式化之前:

fetchEmployees = async () => {
    await this.props.getEmployeesInProject();
}

fetchAssignments = async () => {
    await this.props.getAssignmentsInProject();
}

自动格式化后:

fetchEmployees = async() => {
    await this
        .props
        .getEmployeesInProject();
}

fetchAssignments = async() => {
    await this
        .props
        .getAssignmentsInProject();
}

奇怪的是,这个还不错:

async componentDidMount() {
    await this.fetchEmployees();
    await this.fetchAssignments();
}

有人知道我需要修复哪种格式设置吗?

1 个答案:

答案 0 :(得分:0)

我已经安装了react-beautify作为扩展,这导致自动格式将它们放置在新行上。