#eslint https://eslint.org/docs/latest/rules/curly 制御スタイルにブレーススタイルを許容する[[ESLint]]のルール。 ```ts // NG if (foo) foo++; // OK if (foo) { foo++; } ```