ESLint: fix dangling commas

This commit is contained in:
Yury Bondarenko
2023-06-27 16:23:06 +02:00
parent 725dbc3743
commit 917c36dbe7
1789 changed files with 12452 additions and 12452 deletions

View File

@@ -2,45 +2,45 @@ import { routerReducer, RouterReducerState } from '@ngrx/router-store';
import { ActionReducerMap, createSelector, MemoizedSelector } from '@ngrx/store';
import {
ePeopleRegistryReducer,
EPeopleRegistryState
EPeopleRegistryState,
} from './access-control/epeople-registry/epeople-registry.reducers';
import {
groupRegistryReducer,
GroupRegistryState
GroupRegistryState,
} from './access-control/group-registry/group-registry.reducers';
import {
metadataRegistryReducer,
MetadataRegistryState
MetadataRegistryState,
} from './admin/admin-registries/metadata-registry/metadata-registry.reducers';
import {
CommunityListReducer,
CommunityListState
CommunityListState,
} from './community-list-page/community-list.reducer';
import { hasValue } from './shared/empty.util';
import {
NameVariantListsState,
nameVariantReducer
nameVariantReducer,
} from './shared/form/builder/ds-dynamic-form-ui/relation-lookup-modal/name-variant.reducer';
import { formReducer, FormState } from './shared/form/form.reducer';
import { menusReducer} from './shared/menu/menu.reducer';
import {
notificationsReducer,
NotificationsState
NotificationsState,
} from './shared/notifications/notifications.reducers';
import {
selectableListReducer,
SelectableListsState
SelectableListsState,
} from './shared/object-list/selectable-list/selectable-list.reducer';
import {
ObjectSelectionListState,
objectSelectionReducer
objectSelectionReducer,
} from './shared/object-select/object-select.reducer';
import { cssVariablesReducer, CSSVariablesState } from './shared/sass-helper/css-variable.reducer';
import { hostWindowReducer, HostWindowState } from './shared/search/host-window.reducer';
import {
filterReducer,
SearchFiltersState
SearchFiltersState,
} from './shared/search/search-filters/search-filter/search-filter.reducer';
import { sidebarReducer, SidebarState } from './shared/sidebar/sidebar.reducer';
import { truncatableReducer, TruncatablesState } from './shared/truncatable/truncatable.reducer';
@@ -108,6 +108,6 @@ export function keySelector<T>(key: string, selector): MemoizedSelector<AppState
export const storeModuleConfig = {
runtimeChecks: {
strictStateImmutability: true,
strictActionImmutability: true
}
strictActionImmutability: true,
},
};