-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsettings.json
More file actions
33 lines (33 loc) · 1.15 KB
/
settings.json
File metadata and controls
33 lines (33 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{
"appService.defaultWebAppToDeploy": "/subscriptions/24b10228-1909-43af-9a40-43ce0170c420/resourceGroups/appsvc_linux_centralus/providers/Microsoft.Web/sites/projectonyx",
"appService.deploySubpath": ".",
"eslint.enable": true,
"eslint.useFlatConfig": true,
"eslint.validate": [
"javascript",
"javascriptreact",
"typescript",
"typescriptreact"
],
"editor.codeActionsOnSave": {
"source.fixAll": "always",
"source.fixAll.eslint": "always"
},
"javascript.validate.enable": true,
"javascript.suggestionActions.enabled": true,
"typescript.validate.enable": true,
"typescript.enablePromptUseWorkspaceTsdk": true,
"javascript.preferences.importModuleSpecifier": "relative",
"javascript.updateImportsOnFileMove.enabled": "always",
"javascript.format.enable": true,
"javascript.preferences.includePackageJsonAutoImports": "auto",
"javascript.suggest.autoImports": true,
"javascript.suggest.includeCompletionsForImportStatements": true,
"javascript.suggest.paths": true,
"typescript.suggest.paths": true,
"files.associations": {
"*.js": "javascript",
"*.jsx": "javascriptreact",
"*.mjs": "javascript"
}
}