我使用安装了 Prettier 和 ESLint 的 VS Code。我想知道我是否可以有这样的规则:
- 在代码块末尾和注释之间添加新行(在所有类型的文件中 - html、css、js 等):
//comment something function make() { doSomething(); } //formatter adds this line to separate the bracket above from the comment below //comment something function make() { doSomething(); }
- 没有注释的对象和嵌套对象的类似规则:
const obj = { prop: { foo: 'bar' }, prop2: { foo: 'bar' } }