0

在下面的代码中,如果我删除 // prettier-ignore,那么 prettier 将转换

'Accept'

进入

Accept

这将产生编译错误。Prettier 不会在我的其他标题上这样做。

有没有比要求 prettier 忽略下一行更好的解决方案?

export default function({ $axios, redirect }, inject) {
// Create a custom axios instance
const api = $axios.create({
    headers: {
        common: {
            // prettier-ignore
            'Accept': 'application/json; charset=utf-8',
            'Content-Type': 'application/json; charset=utf-8'
        }
    }
})

api.setBaseURL('http://10.10.10.5:8088')

// Inject to context as $api
inject('api', api)

}

如果我没有用单引号将标题名称括起来,则 Vue2 错误:

Syntax Error: Unexpected token, expected "," (9:11)

common: {
Accept: 'application/json; charset=utf-8',
Content-Type: 'application/json; charset=utf-8'
       ^
}

.prettierrc.json:

{
"tabWidth": 4,
"useTabs": true,
"semi": false,
"singleQuote": true
}
4

0 回答 0