Skip to content

Latest commit

 

History

History
28 lines (21 loc) · 206 Bytes

empty-brace-spaces.md

File metadata and controls

28 lines (21 loc) · 206 Bytes

Enforce no spaces between braces

This rule is fixable.

Fail

class Unicorn {
}
try {
	foo();
} catch { }

Pass

class Unicorn {}
try {
	foo();
} catch {}