config('advagg_validator.settings')->get('jshint_ignore'); if (is_array($ignore_list)) { $ignore_list = implode(',', $ignore_list); } $form['#attached']['drupalSettings']['jshint'] = [ 'browser' => TRUE, 'curly' => TRUE, 'eqeqeq' => TRUE, 'forin' => TRUE, 'latedef' => TRUE, 'newcap' => TRUE, 'noarg' => TRUE, 'strict' => TRUE, 'trailing' => TRUE, 'undef' => TRUE, 'unused' => TRUE, 'predef' => [ 'Drupal' => FALSE, 'drupalSettings' => FALSE, 'domready' => FALSE, 'jQuery' => FALSE, '_' => FALSE, 'matchMedia' => FALSE, 'Backbone' => FALSE, 'Modernizr' => FALSE, 'VIE' => FALSE, 'CKEDITOR' => FALSE, ], 'ignore' => $ignore_list, ]; $form = parent::buildForm($form, $form_state); unset($form['actions']); return $form; } }