Skip to content

Commit 307947c

Browse files
committed
created a vscode workspace file for the repo
1 parent 814a418 commit 307947c

File tree

2 files changed

+38
-0
lines changed

2 files changed

+38
-0
lines changed

.prettierrc.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff 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: {

react.code-workspace

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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+
"typescript.format.enable": false,
25+
"json.format.enable": false,
26+
"editor.formatOnSave": true,
27+
"editor.defaultFormatter": "esbenp.prettier-vscode",
28+
"flow.pathToFlow": "${workspaceFolder}/node_modules/.bin/flow",
29+
"prettier.configPath": "",
30+
"prettier.ignorePath": ""
31+
}
32+
}

0 commit comments

Comments
 (0)