# gt: General Translation CLI tool: Global options URL: https://generaltranslation.com/en-GB/docs/cli/reference/global-options.mdx --- title: Global options description: Control output, compatibility checks, and command help across the General Translation CLI. API reference for global CLI options. --- Global options apply to the `gt` command and its subcommands. The `--quiet` option can appear before or after a subcommand. ## Overview [#overview] ```bash npx gt [global options] ``` | Option | Description | Type | Optional | Default | | ------------------------------------------------------------- | ---------------------------------------------------- | --------- | -------- | ------- | | [`--skip-version-check`](#skip-version-check) | Skip the monorepo package-version consistency check. | `boolean` | Yes | `false` | | [`--suppress-id-compatibility-warning`](#suppress-id-warning) | Hide the React package ID compatibility warning. | `boolean` | Yes | `false` | | [`-q, --quiet`](#quiet) | Show only warnings and errors. | `boolean` | Yes | `false` | | [`-h, --help`](#help) | Display help for the current command. | `boolean` | Yes | `false` | ## `--skip-version-check` [#skip-version-check] **Type** `boolean` · **Optional** · **Default** `false` Skips the consistency check for General Translation packages in a monorepo. Other validation still runs. ## `--suppress-id-compatibility-warning` [#suppress-id-warning] **Type** `boolean` · **Optional** · **Default** `false` Hides the warning about incompatible React package ID behaviour. It does not change package versions or translation behaviour. ## `-q, --quiet` [#quiet] **Type** `boolean` · **Optional** · **Default** `false` Suppresses banners, progress indicators and informational output. Warnings and errors remain visible. When `GT_LOG_FORMAT=json`, quiet mode raises the console log level to `warn`. It does not lower a more restrictive `GT_LOG_LEVEL`, such as `error`. ```bash npx gt translate --quiet ``` ## `-h, --help` [#help] **Type** `boolean` · **Optional** · **Default** `false` Displays usage information, options, and available subcommands without running the command. ```bash npx gt translate --help ```