fix build lint failure for prettier formatting (#7725)

This commit is contained in:
Jonathan Prusik 2024-01-29 12:45:51 -05:00 committed by GitHub
parent 7678461b48
commit 9119569134
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 17 additions and 17 deletions

View File

@ -2,47 +2,47 @@
"folders": [
{
"name": "root",
"path": "."
"path": ".",
},
{
"name": "web vault",
"path": "apps/web"
"path": "apps/web",
},
{
"name": "web vault (bit)",
"path": "bitwarden_license/bit-web"
"path": "bitwarden_license/bit-web",
},
{
"name": "cli",
"path": "apps/cli"
"path": "apps/cli",
},
{
"name": "desktop",
"path": "apps/desktop"
"path": "apps/desktop",
},
{
"name": "browser",
"path": "apps/browser"
"path": "apps/browser",
},
{
"name": "libs",
"path": "libs"
}
"path": "libs",
},
],
"settings": {
"eslint.options": {
"overrideConfig": {
"parserOptions": {
"project": ["${workspaceFolder}/tsconfig.eslint.json"]
}
}
"project": ["${workspaceFolder}/tsconfig.eslint.json"],
},
},
},
"debug.javascript.terminalOptions": {
"sourceMapPathOverrides": {
"webpack:///./~/*": "${workspaceFolder:root}/node_modules/*",
"webpack://?:*/*": "${workspaceFolder}/*",
"webpack://@bitwarden/cli/*": "${workspaceFolder}/*"
}
"webpack://@bitwarden/cli/*": "${workspaceFolder}/*",
},
},
"jest.disabledWorkspaceFolders": [
"browser",
@ -56,14 +56,14 @@
"jest.jestCommandLine": "npx jest",
"angular.enable-strict-mode-prompt": false,
"typescript.preferences.importModuleSpecifier": "project-relative",
"javascript.preferences.importModuleSpecifier": "project-relative"
"javascript.preferences.importModuleSpecifier": "project-relative",
},
"extensions": {
"recommendations": [
"orta.vscode-jest",
"dbaeumer.vscode-eslint",
"esbenp.prettier-vscode",
"Angular.ng-template"
]
}
"Angular.ng-template",
],
},
}