Use prettier (#600)

This commit is contained in:
Brian Ng
2017-06-28 11:41:42 -05:00
committed by Henry Zhu
parent a95f55c468
commit 5180ecdca4
30 changed files with 6800 additions and 4830 deletions

View File

@@ -4,16 +4,16 @@
// the parser process. These options are recognized:
export type Options = {
sourceType: "script" | "module";
sourceFilename?: string;
startLine: number;
allowReturnOutsideFunction: boolean;
allowImportExportEverywhere: boolean;
allowSuperOutsideMethod: boolean;
plugins: $ReadOnlyArray<string>;
strictMode: ?boolean;
ranges: boolean;
tokens: boolean;
sourceType: "script" | "module",
sourceFilename?: string,
startLine: number,
allowReturnOutsideFunction: boolean,
allowImportExportEverywhere: boolean,
allowSuperOutsideMethod: boolean,
plugins: $ReadOnlyArray<string>,
strictMode: ?boolean,
ranges: boolean,
tokens: boolean,
};
export const defaultOptions: Options = {