Skip to content
This repository has been archived by the owner on Jan 9, 2023. It is now read-only.

Commit

Permalink
feat(toolchain): adds vscode settings folder in order to enable eslint
Browse files Browse the repository at this point in the history
  • Loading branch information
fox1t committed Oct 2, 2019
1 parent 8e5b35c commit 683e16b
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,6 @@ profile-*
# webstorm
.idea

# vscode
.vscode
*code-workspace

# clinic
Expand Down
24 changes: 24 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"typescript.tsdk": "node_modules/typescript/lib",
"eslint.autoFixOnSave": true,
"eslint.validate": [
{
"autoFix": true,
"language": "typescript"
},
{
"autoFix": true,
"language": "typescriptreact"
}
],
"eslint.workingDirectories": [
{
"directory": "packages/components",
"changeProcessCWD": true
},
{
"directory": "packages/server",
"changeProcessCWD": true
}
]
}

0 comments on commit 683e16b

Please sign in to comment.