Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

big chunks of whitespace #136

Open
lukepighetti opened this issue Oct 2, 2018 · 0 comments
Open

big chunks of whitespace #136

lukepighetti opened this issue Oct 2, 2018 · 0 comments

Comments

@lukepighetti
Copy link

Given

export interface Project extends Timestamped {
  title: string;
  avatar: string;
  tags: { [key: string]: boolean };
  www: string;
}

export interface User extends Timestamped {
  name: string;
  avatar: string;
  premium: boolean;
  bio: string;
}

export interface Message extends Timestamped {
  uid: string;
  m: string;
}

export interface Timestamped {
  tc: number;
  tm: number;
}

tsfmt produces

export interface Project extends Timestamped {
    title: string;
    avatar: string;
    tags: { [key: string]: boolean };
    www: string;
}

export interface User extends Timestamped {
    name: string;
    avatar: string;
    premium: boolean;
    bio: string;
}

export interface Message extends Timestamped {
    uid: string;
    m: string;
}





export interface Timestamped {
    tc: number;
    tm: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant