在Prettier或ESLint中添加对象和注释之间的新行

时间:2017-09-10 12:14:36

标签: formatting eslint formatter prettier

我使用VS Code安装了Prettier和ESLint。我想知道我是否可以有这样的规则:

  1. 在代码块结尾和注释之间添加一个新行(在所有类型的文件中 - html,css,js等):
  2.         //comment something
            function make() {
              doSomething();
            }
            //formatter adds this line to separate the bracket above from the comment below
            //comment something
            function make() {
              doSomething();
            }
    
    1. 对象和没有注释的嵌套对象的类似规则:
    2. const obj = {
      
          prop: {
          foo: 'bar'
          },
      
          prop2: {
          foo: 'bar'
          }
      
      }
      

0 个答案:

没有答案