fix: eslint fixes and file formatting
This commit is contained in:
parent
473dfc7a5b
commit
53ddef1cd5
954 changed files with 3921 additions and 3809 deletions
|
|
@ -1,6 +1,6 @@
|
|||
import { observable, action, makeObservable, runInAction } from "mobx";
|
||||
// types
|
||||
import { AppConfigService } from "services/app_config.service";
|
||||
import { AppConfigService } from "@/services/app_config.service";
|
||||
import { IAppConfig } from "@plane/types";
|
||||
// services
|
||||
|
||||
|
|
|
|||
|
|
@ -1,8 +1,8 @@
|
|||
import { observable, action, makeObservable, computed } from "mobx";
|
||||
// services
|
||||
import { EIssuesStoreType, TCreateModalStoreTypes } from "constants/issue";
|
||||
import { PageService } from "services/page.service";
|
||||
import { ProjectService } from "services/project";
|
||||
import { EIssuesStoreType, TCreateModalStoreTypes } from "@/constants/issue";
|
||||
import { PageService } from "@/services/page.service";
|
||||
import { ProjectService } from "@/services/project";
|
||||
|
||||
export interface ModalData {
|
||||
store: EIssuesStoreType;
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
import { RootStore } from "store/root.store";
|
||||
import { RootStore } from "@/store/root.store";
|
||||
import { EventTrackerStore, IEventTrackerStore } from "../event-tracker.store";
|
||||
import { AppConfigStore, IAppConfigStore } from "./app-config.store";
|
||||
import { CommandPaletteStore, ICommandPaletteStore } from "./command-palette.store";
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
import { observable, action, computed, makeObservable, runInAction } from "mobx";
|
||||
// types
|
||||
import { InstanceService } from "services/instance.service";
|
||||
import { InstanceService } from "@/services/instance.service";
|
||||
import { IInstance, IInstanceConfiguration, IFormattedInstanceConfiguration, IInstanceAdmin } from "@plane/types";
|
||||
// services
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
// mobx
|
||||
import { action, observable, makeObservable } from "mobx";
|
||||
// helper
|
||||
import { applyTheme, unsetCustomCssVariables } from "helpers/theme.helper";
|
||||
import { applyTheme, unsetCustomCssVariables } from "@/helpers/theme.helper";
|
||||
|
||||
export interface IThemeStore {
|
||||
// observables
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue