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' } }