client/pyre.py [863:889]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@pyre.command()
@click.option(
    "--terminal", is_flag=True, default=False, help="Run the server in the terminal."
)
@click.option(
    "--store-type-check-resolution",
    is_flag=True,
    default=False,
    help="Store extra information for `types` queries.",
)
@click.option(
    "--no-watchman",
    is_flag=True,
    default=False,
    help="Do not spawn a watchman client in the background.",
)
@click.option(
    "--incremental-style",
    type=click.Choice(
        [
            str(command_arguments.IncrementalStyle.SHALLOW),
            str(command_arguments.IncrementalStyle.FINE_GRAINED),
        ]
    ),
    default=str(command_arguments.IncrementalStyle.FINE_GRAINED),
    help="[DEPRECATED] How to approach doing incremental checks.",
)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



client/pyre.py [970:996]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@pyre.command()
@click.option(
    "--terminal", is_flag=True, default=False, help="Run the server in the terminal."
)
@click.option(
    "--store-type-check-resolution",
    is_flag=True,
    default=False,
    help="Store extra information for `types` queries.",
)
@click.option(
    "--no-watchman",
    is_flag=True,
    default=False,
    help="Do not spawn a watchman client in the background.",
)
@click.option(
    "--incremental-style",
    type=click.Choice(
        [
            str(command_arguments.IncrementalStyle.SHALLOW),
            str(command_arguments.IncrementalStyle.FINE_GRAINED),
        ]
    ),
    default=str(command_arguments.IncrementalStyle.FINE_GRAINED),
    help="[DEPRECATED] How to approach doing incremental checks.",
)
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



