Adding Prettier and fixing up eslint version

Issue-ID: SDC-1094
Change-Id: Ie83ad95a03899345dd90235daf0323cbe3bc6afd
Signed-off-by: Einav Weiss Keidar <einavw@amdocs.com>
diff --git a/openecomp-ui/src/sdc-app/onboarding/userNotifications/UserNotificationsConstants.js b/openecomp-ui/src/sdc-app/onboarding/userNotifications/UserNotificationsConstants.js
index a8e92e2..b2466f1 100644
--- a/openecomp-ui/src/sdc-app/onboarding/userNotifications/UserNotificationsConstants.js
+++ b/openecomp-ui/src/sdc-app/onboarding/userNotifications/UserNotificationsConstants.js
@@ -1,22 +1,21 @@
-
 import keyMirror from 'nfvo-utils/KeyMirror.js';
 
 export const actionTypes = keyMirror({
-	NOTIFICATION: null,
-	LOAD_NOTIFICATIONS: null,
-	LOAD_PREV_NOTIFICATIONS: null,
-	UPDATE_READ_NOTIFICATION: null,
-	RESET_NEW_NOTIFICATIONS: null,
-	TOGGLE_OVERLAY: null
+    NOTIFICATION: null,
+    LOAD_NOTIFICATIONS: null,
+    LOAD_PREV_NOTIFICATIONS: null,
+    UPDATE_READ_NOTIFICATION: null,
+    RESET_NEW_NOTIFICATIONS: null,
+    TOGGLE_OVERLAY: null
 });
 
 export const notificationType = keyMirror({
-	PERMISSION_CHANGED: 'PermissionChanged',
-	ITEM_CHANGED: {
-		COMMIT: 'commit',
-		SUBMIT: 'submit'
-	},
-	ITEM_DELETED: 'delete',
-	ITEM_ARCHIVED: 'archive',
-	ITEM_RESTORED: 'restore'
-});
\ No newline at end of file
+    PERMISSION_CHANGED: 'PermissionChanged',
+    ITEM_CHANGED: {
+        COMMIT: 'commit',
+        SUBMIT: 'submit'
+    },
+    ITEM_DELETED: 'delete',
+    ITEM_ARCHIVED: 'archive',
+    ITEM_RESTORED: 'restore'
+});