diff options
author | Blaž Hrastnik | 2021-06-02 00:56:50 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-06-02 00:56:50 +0000 |
commit | dbc392d92c8201e221867b0d29997da3577d3622 (patch) | |
tree | 2e14fb8c5e6e8e052cdf11776d51741541b616f7 /helix-syntax | |
parent | 7967d312c0a8ad94942d154485b62b0bbce78611 (diff) |
Run fmt
Diffstat (limited to 'helix-syntax')
-rw-r--r-- | helix-syntax/build.rs | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/helix-syntax/build.rs b/helix-syntax/build.rs index f50c48d1..447fa9c3 100644 --- a/helix-syntax/build.rs +++ b/helix-syntax/build.rs @@ -107,7 +107,10 @@ fn build_dir(dir: &str, language: &str) { } fn main() { - let ignore = vec!["tree-sitter-typescript".to_string(), ".DS_Store".to_string()]; + let ignore = vec![ + "tree-sitter-typescript".to_string(), + ".DS_Store".to_string(), + ]; let dirs = collect_tree_sitter_dirs(&ignore); let mut n_jobs = 0; |