mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-10 07:25:44 +01:00
apply eslint and prettier rules
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type Branch = {
|
||||
name: string;
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
import { Collection, Links } from './hal';
|
||||
import { Tag } from './Tags';
|
||||
import { Branch } from './Branches';
|
||||
import { Collection, Links } from "./hal";
|
||||
import { Tag } from "./Tags";
|
||||
import { Branch } from "./Branches";
|
||||
|
||||
export type Changeset = Collection & {
|
||||
id: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type Config = {
|
||||
proxyPassword: string | null;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Collection, Links } from './hal';
|
||||
import { Collection, Links } from "./hal";
|
||||
|
||||
export type Member = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type IndexResources = {
|
||||
version: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type Me = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type NamespaceStrategies = {
|
||||
current: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Collection, Links } from './hal';
|
||||
import { Collection, Links } from "./hal";
|
||||
|
||||
export type Plugin = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { PagedCollection, Links } from './hal';
|
||||
import { PagedCollection, Links } from "./hal";
|
||||
|
||||
export type Repository = {
|
||||
namespace: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type PermissionCreateEntry = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type RepositoryRole = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Collection } from './hal';
|
||||
import { Collection } from "./hal";
|
||||
|
||||
export type RepositoryType = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
// TODO ?? check ?? links
|
||||
export type SubRepository = {
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type Tag = {
|
||||
name: string;
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { Links } from './hal';
|
||||
import { Links } from "./hal";
|
||||
|
||||
export type DisplayedUser = {
|
||||
id: string;
|
||||
|
||||
@@ -5,7 +5,11 @@ export { Me } from "./Me";
|
||||
export { DisplayedUser, User } from "./User";
|
||||
export { Group, Member } from "./Group";
|
||||
|
||||
export { Repository, RepositoryCollection, RepositoryGroup } from "./Repositories";
|
||||
export {
|
||||
Repository,
|
||||
RepositoryCollection,
|
||||
RepositoryGroup
|
||||
} from "./Repositories";
|
||||
export { RepositoryType, RepositoryTypeCollection } from "./RepositoryTypes";
|
||||
|
||||
export { Branch, BranchRequest } from "./Branches";
|
||||
@@ -18,13 +22,22 @@ export { Config } from "./Config";
|
||||
|
||||
export { IndexResources } from "./IndexResources";
|
||||
|
||||
export { Permission, PermissionCreateEntry, PermissionCollection } from "./RepositoryPermissions";
|
||||
export {
|
||||
Permission,
|
||||
PermissionCreateEntry,
|
||||
PermissionCollection
|
||||
} from "./RepositoryPermissions";
|
||||
|
||||
export { SubRepository, File } from "./Sources";
|
||||
|
||||
export { SelectValue, AutocompleteObject } from "./Autocomplete";
|
||||
|
||||
export { Plugin, PluginCollection, PluginGroup, PendingPlugins } from "./Plugin";
|
||||
export {
|
||||
Plugin,
|
||||
PluginCollection,
|
||||
PluginGroup,
|
||||
PendingPlugins
|
||||
} from "./Plugin";
|
||||
|
||||
export { RepositoryRole } from "./RepositoryRole";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user