# at-rule-semicolon-space-before > **Warning** This rule is deprecated and will be removed in the future. See [the migration guide](../../../docs/migration-guide/to-15.md). Require a single space or disallow whitespace before the semicolons of at-rules. ```css @import "components/buttons"; /** ↑ * The space before this semicolon */ ``` ## Options `string`: `"always"|"never"` ### `"always"` There _must always_ be a single space before the semicolons. The following pattern is considered a problem: ```css @import "components/buttons"; ``` The following pattern is _not_ considered a problem: ```css @import "components/buttons" ; ``` ### `"never"` There _must never_ be a single space before the semicolons. The following pattern is considered a problem: ```css @import "components/buttons" ; ``` The following pattern is _not_ considered a problem: ```css @import "components/buttons"; ```