1

Prettier と ESLint をインストールした VS Code を使用しています。次のようなルールを設定できるかどうか疑問に思います。

  1. コード ブロックの末尾とコメントの間に新しい行を追加する (すべての種類のファイル - 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();
        }
  1. コメントのないオブジェクトとネストされたオブジェクトの同様のルール:
const obj = {

    prop: {
    foo: 'bar'
    },

    prop2: {
    foo: 'bar'
    }

}
4

0 に答える 0