Enforce no spaces between braces ​
💼 This rule is enabled in the ✅ recommended
config.
🔧 This rule is automatically fixable by the --fix
CLI option.
Fail ​
js
class Unicorn {
}
js
try {
foo();
} catch { }
Pass ​
js
class Unicorn {}
js
try {
foo();
} catch {}