1
0
Fork 0

Add .vscode settings to the repo (#16648)

Adding some .vscode settings to help with automatic relative imports, and a suggested default formatter extension of "Prettier ESLint"
This commit is contained in:
HowardBraham 2023-02-22 10:33:12 -08:00 committed by GitHub
parent b106bbf1d9
commit 236b08e9fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 9 additions and 2 deletions

1
.gitignore vendored
View File

@ -12,7 +12,6 @@ package
# IDEs
.idea
.vscode
.sublime-project
*.bak

View File

@ -8,7 +8,6 @@ jest-coverage/
storybook-build/
app/vendor/**
.nyc_output/**
.vscode/**
test/e2e/send-eth-with-private-key-test/**
*.scss
development/chromereload.js

3
.vscode/extensions.json vendored Normal file
View File

@ -0,0 +1,3 @@
{
"recommendations": ["rvest.vs-code-prettier-eslint"]
}

6
.vscode/settings.json vendored Normal file
View File

@ -0,0 +1,6 @@
{
"editor.defaultFormatter": "rvest.vs-code-prettier-eslint",
"editor.tabSize": 2,
"files.trimTrailingWhitespace": true,
"javascript.preferences.importModuleSpecifier": "relative"
}