| 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 | } |