File tree Expand file tree Collapse file tree 1 file changed +10
-4
lines changed
Expand file tree Collapse file tree 1 file changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -62,10 +62,16 @@ fn should_ignore(last_seen: Arc<Mutex<String>>, path: &str) -> bool {
6262
6363// TODO: Cleanup get_ignore_patterns and decrease duplications
6464async fn get_ignore_patterns ( state : SharedState , root : & String ) -> Vec < String > {
65- let mut patterns: Vec < String > = vec ! [ "**/.git/**" , "**/*.xcodeproj/**" , "**/.*" , "**/build/**" ]
66- . iter ( )
67- . map ( |e| e. to_string ( ) )
68- . collect ( ) ;
65+ let mut patterns: Vec < String > = vec ! [
66+ "**/.git/**" ,
67+ "**/*.xcodeproj/**" ,
68+ "**/.*" ,
69+ "**/build/**" ,
70+ "**/buildServer.json" ,
71+ ]
72+ . iter ( )
73+ . map ( |e| e. to_string ( ) )
74+ . collect ( ) ;
6975
7076 // FIXME: Addding extra ignore patterns to `ignore` local config requires restarting deamon.
7177 let extra_patterns = state
You can’t perform that action at this time.
0 commit comments