1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
use ruff_macros::attribute_env_vars_metadata;
/// Declares all environment variable used throughout `ty` and its crates.
pub struct EnvVars;
#[attribute_env_vars_metadata]
impl EnvVars {
/// If set, ty will use this value as the log level for its `--verbose` output.
/// Accepts any filter compatible with the `tracing_subscriber` crate.
///
/// For example:
///
/// - `TY_LOG=ty=debug` is the equivalent of `-vv` to the command line
/// - `TY_LOG=trace` will enable all trace-level logging.
///
/// See the [tracing documentation](https://docs.rs/tracing-subscriber/latest/tracing_subscriber/filter/struct.EnvFilter.html#example-syntax)
/// for more.
pub const TY_LOG: &'static str = "TY_LOG";
/// If set to `"1"` or `"true"`, ty will enable flamegraph profiling.
/// This creates a `tracing.folded` file that can be used to generate flame graphs
/// for performance analysis.
pub const TY_LOG_PROFILE: &'static str = "TY_LOG_PROFILE";
/// Control memory usage reporting format after ty execution.
///
/// Accepted values:
///
/// * `short` - Display short memory report
/// * `full` - Display full memory report
/// * `json` - Display machine-readable JSON format and suppress workspace diagnostics
#[attr_hidden]
pub const TY_MEMORY_REPORT: &'static str = "TY_MEMORY_REPORT";
/// Perturbs constraint-set variable ordering to help detect order-dependent inference.
///
/// Set to `reverse` to reverse builder-local IDs, or to an integer to select an arbitrary
/// permutation of the naturally chosen variable ordering.
#[attr_hidden]
pub const TY_CONSTRAINT_SET_ORDER: &'static str = "TY_CONSTRAINT_SET_ORDER";
/// Specifies an upper limit for the number of tasks ty is allowed to run in parallel.
///
/// For example, how many files should be checked in parallel.
/// This isn't the same as a thread limit. ty may spawn additional threads
/// when necessary, e.g. to watch for file system changes or a dedicated UI thread.
pub const TY_MAX_PARALLELISM: &'static str = "TY_MAX_PARALLELISM";
/// Path to a `ty.toml` configuration file to use.
///
/// When set, ty will use this file for configuration instead of
/// discovering configuration files automatically.
///
/// Equivalent to the `--config-file` command-line argument.
pub const TY_CONFIG_FILE: &'static str = "TY_CONFIG_FILE";
/// The format to use for printing diagnostic messages.
///
/// When set, ty will use this format for output instead of the default.
///
/// Accepts the same values as the `--output-format` command-line argument.
pub const TY_OUTPUT_FORMAT: &'static str = "TY_OUTPUT_FORMAT";
/// Enable uv integration.
///
/// When set to `"1"` or `"true"`, ty invokes `uv workspace metadata` to discover the workspace
/// root.
#[attr_hidden]
pub const TY_UV: &'static str = "TY_UV";
/// The path to the uv executable to use for workspace discovery.
///
/// ty uses this path when uv integration is enabled by `TY_UV`.
#[attr_hidden]
pub const UV: &'static str = "UV";
/// Used to detect an activated virtual environment.
pub const VIRTUAL_ENV: &'static str = "VIRTUAL_ENV";
/// Adds additional directories to ty's search paths.
/// The format is the same as the shell’s PATH:
/// one or more directory pathnames separated by os appropriate pathsep
/// (e.g. colons on Unix or semicolons on Windows).
pub const PYTHONPATH: &'static str = "PYTHONPATH";
/// Used to determine the name of the active Conda environment.
pub const CONDA_DEFAULT_ENV: &'static str = "CONDA_DEFAULT_ENV";
/// Used to detect the path of an active Conda environment.
/// If both `VIRTUAL_ENV` and `CONDA_PREFIX` are present, `VIRTUAL_ENV` will be preferred.
pub const CONDA_PREFIX: &'static str = "CONDA_PREFIX";
/// Used to determine the root install path of Conda.
pub const CONDA_ROOT: &'static str = "_CONDA_ROOT";
// Externally defined environment variables
/// Specifies an upper limit for the number of threads ty uses when performing work in parallel.
/// Equivalent to `TY_MAX_PARALLELISM`.
///
/// This is a standard Rayon environment variable.
pub const RAYON_NUM_THREADS: &'static str = "RAYON_NUM_THREADS";
/// Path to user-level configuration directory on Unix systems.
pub const XDG_CONFIG_HOME: &'static str = "XDG_CONFIG_HOME";
}