From d85f09cbed5f3d2501f791e689011ae127df1cbb Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sun, 9 Jan 2022 20:33:53 +0100 Subject: build: Add prettier MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit eslint will also enforce prettier rules, so there is no need to call prettier separately in CI. Signed-off-by: Kristóf Marussy --- packages/main/src/stores/SharedStore.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'packages/main/src/stores/SharedStore.ts') diff --git a/packages/main/src/stores/SharedStore.ts b/packages/main/src/stores/SharedStore.ts index c023fc7..73245cd 100644 --- a/packages/main/src/stores/SharedStore.ts +++ b/packages/main/src/stores/SharedStore.ts @@ -23,7 +23,10 @@ import { Instance, types } from 'mobx-state-tree'; import { config } from './Config'; -export type { SharedStoreSnapshotIn, SharedStoreSnapshotOut } from '@sophie/shared'; +export type { + SharedStoreSnapshotIn, + SharedStoreSnapshotOut, +} from '@sophie/shared'; export const sharedStore = originalSharedStore.props({ config: types.optional(config, {}), -- cgit v1.2.3-54-g00ecf