使用vs 代码编辑器中的更漂亮的插件,需要配置哪些设置才能在 typescript 文件中的类中的方法声明之前和之后添加新行?
我们如何通过在文件中写入任何规则来.prettierrc
实现tslint.json
?
当前的行为是
function one(){
// some code
}
function two(){
// some code
}
预期结果
function one(){
// some code
}
function two(){
// some code
}
我在tslint.json中尝试过以下行
"lines-between-class-methods": "true"
但没有用