我最近换了一台新电脑,但很难设置更漂亮的设置。(我认为它更漂亮,可能是 eslint)。
这个 gif 说明了正在发生的事情: http: //g.recordit.co/H871hfT9Sv.gif
有谁知道这个设置叫什么?除非长度扩展设置,否则我希望所有导入都在一行上printWidth
。
这是我在 VS Code 中的相关用户设置:
{
"prettier.printWidth": 100,
"prettier.semi": false,
"prettier.singleQuote": true,
"prettier.trailingComma": "all"
}
谢谢 !
编辑:视觉描绘,因此您无需观看 gif。
预期的:
import React from 'react'
import { Dimensions, StyleSheet, View } from 'react-native'
import LinearGradient from 'react-native-linear-gradient'
import { isIphoneX } from 'react-native-iphone-x-helper'
行为:(不需要)
import React from 'react'
import {
Dimensions,
StyleSheet,
View
} from 'react-native'
import LinearGradient from 'react-native-linear-gradient'
import {
isIphoneX
} from 'react-native-iphone-x-helper'