apply eslint and prettier rules

This commit is contained in:
Sebastian Sdorra
2019-10-21 10:57:56 +02:00
parent 85773186db
commit 4bb8e6153b
227 changed files with 1147 additions and 4076 deletions

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type Branch = {
name: string;

View File

@@ -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;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type Config = {
proxyPassword: string | null;

View File

@@ -1,4 +1,4 @@
import { Collection, Links } from './hal';
import { Collection, Links } from "./hal";
export type Member = {
name: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type IndexResources = {
version: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type Me = {
name: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type NamespaceStrategies = {
current: string;

View File

@@ -1,4 +1,4 @@
import { Collection, Links } from './hal';
import { Collection, Links } from "./hal";
export type Plugin = {
name: string;

View File

@@ -1,4 +1,4 @@
import { PagedCollection, Links } from './hal';
import { PagedCollection, Links } from "./hal";
export type Repository = {
namespace: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type PermissionCreateEntry = {
name: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type RepositoryRole = {
name: string;

View File

@@ -1,4 +1,4 @@
import { Collection } from './hal';
import { Collection } from "./hal";
export type RepositoryType = {
name: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
// TODO ?? check ?? links
export type SubRepository = {

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type Tag = {
name: string;

View File

@@ -1,4 +1,4 @@
import { Links } from './hal';
import { Links } from "./hal";
export type DisplayedUser = {
id: string;

View File

@@ -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";