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
//! [`CodeScanner`] — find references to environment variables in source code.
use ;
use crateScannerError;
/// Where a scanner found a variable reference.
/// Walk a directory tree looking for references to environment variables.
///
/// Implementations should:
/// - skip common build/output directories (`target`, `node_modules`, `dist`, …);
/// - skip binary files (no UTF-8) without error;
/// - return one [`ScanHit`] per reference (a variable referenced N times in
/// one file produces N hits).