File tree 2 files changed +36
-0
lines changed
2 files changed +36
-0
lines changed Original file line number Diff line number Diff line change @@ -14,6 +14,12 @@ module.exports = {
14
14
parser : 'flow' ,
15
15
arrowParens : 'avoid' ,
16
16
overrides : [
17
+ {
18
+ files : [ '*.code-workspace' ] ,
19
+ options : {
20
+ parser : 'json-stringify' ,
21
+ } ,
22
+ } ,
17
23
{
18
24
files : esNextPaths ,
19
25
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
+ "search.exclude" : {
17
+ "**/dist/**" : true ,
18
+ "**/build/**" : true ,
19
+ "**/out/**" : true ,
20
+ "*.map" : true ,
21
+ "*.log" : true
22
+ },
23
+ "javascript.validate.enable" : false ,
24
+ "editor.formatOnSave" : true ,
25
+ "editor.defaultFormatter" : " esbenp.prettier-vscode" ,
26
+ "flow.pathToFlow" : " ${workspaceFolder}/node_modules/.bin/flow" ,
27
+ "prettier.configPath" : " " ,
28
+ "prettier.ignorePath" : " "
29
+ }
30
+ }
You can’t perform that action at this time.
0 commit comments