Change record status: 
Project: 
Introduced in branch: 
8.7.x
Introduced in version: 
8.7.0
Description: 

Now when you save a view, display extenders are validated like other views plugins, handlers, relationships, etc. You can add your own validation using the validate() method of your display extender plugin.

Example:

/**
 * {@inheritdoc}
 */
public function validate() {
  $errors = parent::validate();

  // Check the empty value.
  if (empty($this->options['not_empty_value'])) {
    $errors[] = $this->t('The value is empty.');
  }
  return $errors;
}
Impacts: 
Module developers
Updates Done (doc team, etc.)
Online documentation: 
Not done
Theming guide: 
Not done
Module developer documentation: 
Not done
Examples project: 
Not done
Coder Review: 
Not done
Coder Upgrade: 
Not done
Other: 
Other updates done