Skip to content

Commit

Permalink
Update .gitignore and add vscode settings (#4874)
Browse files Browse the repository at this point in the history
  • Loading branch information
gilluminate authored May 9, 2024
1 parent 63f79e2 commit 418a1b8
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 7 deletions.
9 changes: 2 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -87,10 +87,6 @@ project/metals.sbt
# paulp script
/.lib/

# Editors
.vscode/
.idea/

# Vagrant
.vagrant/

Expand Down Expand Up @@ -234,13 +230,12 @@ dmypy.json
# Pyre type checker
.pyre/

.idea
.idea/

# VSCode
.vscode/*

# Congigure and save debugging details in VS Code launch.json file
!.vscode/launch.json
!.vscode/settings.json

*.code-workspace
.mypy_cache
Expand Down
17 changes: 17 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"editor.formatOnSave": true,
"files.insertFinalNewline": true,
"files.trimFinalNewlines": true,
"files.trimTrailingWhitespace": true,
"eslint.workingDirectories": [
"./clients/admin-ui",
"./clients/fides-js",
"./clients/privacy-center",
"./clients/cypress-e2e",
"./clients/simple-app"
],
"typescript.enablePromptUseWorkspaceTsdk": true,
"typescript.tsdk": "./clients/node_modules/typescript/lib",
"editor.defaultFormatter": "esbenp.prettier-vscode",
"typescript.preferences.importModuleSpecifier": "non-relative"
}

0 comments on commit 418a1b8

Please sign in to comment.