From 5eecddb58384b56c7abf3cd42bfc0dd448674474 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliver=20G=C3=BCnther?= Date: Wed, 9 Mar 2022 08:24:10 +0100 Subject: [PATCH] Exclude vendor from eslint --- frontend/.eslintignore | 3 ++- .../editor/components/ckeditor/op-ckeditor.component.ts | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/frontend/.eslintignore b/frontend/.eslintignore index 82a9a730d1..1c7abcc8fb 100644 --- a/frontend/.eslintignore +++ b/frontend/.eslintignore @@ -1 +1,2 @@ -.eslintrc.js \ No newline at end of file +.eslintrc.js +vendor \ No newline at end of file diff --git a/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts b/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts index 5eb8eb18f4..4cd5255721 100644 --- a/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts +++ b/frontend/src/app/shared/components/editor/components/ckeditor/op-ckeditor.component.ts @@ -84,7 +84,7 @@ export class OpCkeditorComponent implements OnInit, OnDestroy { public manualMode = false; - private _content:string = ''; + private _content = ''; public text = { errorTitle: this.I18n.t('js.editor.ckeditor_error'),