Skip to content

Commit

Permalink
Add support for multi roots for formatting and linting (#1281)
Browse files Browse the repository at this point in the history
* update to use latest api

* config changes for multiroot workspace

* linting support with multi roots

* multi root support for formatters

* determine workspace root path

* revert change

* support multiple configs per workspace folder

* modify formatters to use resource specific settings

* modified to settings are resolved using document uri
  • Loading branch information
DonJayamanne committed Oct 10, 2017
1 parent 14ef606 commit 42a7e44
Show file tree
Hide file tree
Showing 24 changed files with 384 additions and 270 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ node_modules
src/test/.vscode/**
**/testFiles/**/.cache/**
*.noseids
.vscode-test
__pycache__
9 changes: 6 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@
],
"stopOnEntry": false,
"sourceMaps": true,
"outDir": "${workspaceRoot}/out",
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
"preLaunchTask": "npm"
},
{
Expand All @@ -43,7 +45,9 @@
"--server=4711"
],
"sourceMaps": true,
"outDir": "${workspaceRoot}/out/client",
"outFiles": [
"${workspaceRoot}/out/client/**/*.js"
],
"cwd": "${workspaceRoot}"
},
{
Expand All @@ -58,7 +62,6 @@
],
"stopOnEntry": false,
"sourceMaps": true,
"xxoutDir": "${workspaceRoot}/out/test",
"outFiles": [
"${workspaceRoot}/out/**/*.js"
],
Expand Down
Loading

0 comments on commit 42a7e44

Please sign in to comment.