Skip to content

Commit 28f60de

Browse files
committed
Track my vscode config
1 parent e86a3a0 commit 28f60de

File tree

2 files changed

+31
-0
lines changed

2 files changed

+31
-0
lines changed

.vscode/launch.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"version": "0.2.0",
3+
"configurations": [{
4+
"name": "Client",
5+
"type": "chrome",
6+
"request": "launch",
7+
"url": "http://localhost:3000",
8+
"webRoot": "${workspaceRoot}/client/src"
9+
}]
10+
}

.vscode/settings.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
// Format a file on save. A formatter must be available, the file must not be auto-saved, and editor must not be shutting down.
3+
"editor.formatOnSave": true,
4+
5+
// Enable/disable default JavaScript formatter (For Prettier)
6+
"javascript.format.enable": false,
7+
8+
// Use 'prettier-eslint' instead of 'prettier'. Other settings will only be fallbacks in case they could not be inferred from eslint rules.
9+
"prettier.eslintIntegration": true,
10+
11+
// For Stylelint
12+
"prettier.stylelintIntegration": true,
13+
14+
// For Flow
15+
"javascript.validate.enable": false,
16+
"flow.pathToFlow": "${workspaceRoot}/client/node_modules/.bin/flow",
17+
18+
"eslint.workingDirectories": [
19+
"./client"
20+
]
21+
}

0 commit comments

Comments
 (0)