File tree Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Expand file tree Collapse file tree 2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ module.exports = {
1414  parser : 'flow' , 
1515  arrowParens : 'avoid' , 
1616  overrides : [ 
17+     { 
18+       files : [ '*.code-workspace' ] , 
19+       options : { 
20+         parser : 'json-stringify' , 
21+       } , 
22+     } , 
1723    { 
1824      files : esNextPaths , 
1925      options : { 
Original file line number Diff line number Diff line change 1+ {
2+   "folders" : [
3+     {
4+       "path" : " ." 
5+     }
6+   ],
7+   "extensions" : {
8+     "recommendations" : [
9+       " dbaeumer.vscode-eslint" 
10+       " editorconfig.editorconfig" 
11+       " esbenp.prettier-vscode" 
12+       " flowtype.flow-for-vscode" 
13+     ]
14+   },
15+   "settings" : {
16+     "editor.formatOnSave" : true ,
17+     "flow.pathToFlow" : " ${workspaceFolder}/node_modules/.bin/flow" 
18+     "javascript.validate.enable" : false ,
19+     "search.useIgnoreFiles" : true ,
20+     "search.exclude" : {
21+       "**/dist/**" : true ,
22+       "**/build/**" : true ,
23+       "**/out/**" : true ,
24+       "*.map" : true ,
25+       "*.log" : true 
26+     }
27+   }
28+ }
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments