# Enforce no spaces between braces πŸ’ΌπŸš« This rule is enabled in the βœ… `recommended` [config](https://github.com/sindresorhus/eslint-plugin-unicorn#recommended-config). This rule is _disabled_ in the β˜‘οΈ `unopinionated` [config](https://github.com/sindresorhus/eslint-plugin-unicorn#recommended-config). πŸ”§ This rule is automatically fixable by the [`--fix` CLI option](https://eslint.org/docs/latest/user-guide/command-line-interface#--fix). ## Examples ```js // ❌ class Unicorn { } // βœ… class Unicorn {} ``` ```js // ❌ try { foo(); } catch { } // βœ… try { foo(); } catch {} ```