Skip to main content

missing_whitespace_between_adjacent_strings

Learn about the missing_whitespace_between_adjacent_strings linter rule.

Stable

Missing whitespace between adjacent strings.

Details

#

Add a trailing whitespace to prevent missing whitespace between adjacent strings.

With long text split across adjacent strings it's easy to forget a whitespace between strings.

BAD:

dart
var s =  'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed'  'do eiusmod tempor incididunt ut labore et dolore magna'; 

GOOD:

dart
var s =  'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed '  'do eiusmod tempor incididunt ut labore et dolore magna'; 

Enable

#

To enable the missing_whitespace_between_adjacent_strings rule, add missing_whitespace_between_adjacent_strings under linter > rules in your analysis_options.yaml file:

analysis_options.yaml
yaml
linter:  rules:  - missing_whitespace_between_adjacent_strings 

If you're instead using the YAML map syntax to configure linter rules, add missing_whitespace_between_adjacent_strings: true under linter > rules:

analysis_options.yaml
yaml
linter:  rules:  missing_whitespace_between_adjacent_strings: true