-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(vscode): add workspace settings and extensions
- Loading branch information
Frazer Smith
committed
Feb 9, 2021
1 parent
92b5d5e
commit 547243c
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
{ | ||
// See http://go.microsoft.com/fwlink/?LinkId=827846 | ||
// for the documentation about the extensions.json format | ||
"recommendations": ["dbaeumer.vscode-eslint", "esbenp.prettier-vscode"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
{ | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"editor.formatOnSave": true, | ||
"files.eol": "\n", | ||
"npm.packageManager": "npm", | ||
"prettier.arrowParens": "always", | ||
"prettier.endOfLine": "lf", | ||
"prettier.singleQuote": true, | ||
"prettier.tabWidth": 4, | ||
"prettier.useTabs": true, | ||
"telemetry.enableCrashReporter": false, | ||
"telemetry.enableTelemetry": false | ||
} |