Unnamed repository; edit this file 'description' to name the repository.
Diffstat (limited to 'helix-loader/src/main.rs')
| -rw-r--r-- | helix-loader/src/main.rs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/helix-loader/src/main.rs b/helix-loader/src/main.rs index c1ce45ff..d3c72cc1 100644 --- a/helix-loader/src/main.rs +++ b/helix-loader/src/main.rs @@ -4,6 +4,8 @@ use helix_loader::grammar::fetch_grammars; // This binary is used in the Release CI as an optimization to cut down on // compilation time. This is not meant to be run manually. +const STRICT: bool = true; + fn main() -> Result<()> { - fetch_grammars() + fetch_grammars(STRICT) } |