From 511c096c7751879441c9bbe8ee3de7e0067fdd20 Mon Sep 17 00:00:00 2001 From: monicajoyal Date: Sun, 28 Jul 2024 22:09:16 +0400 Subject: [PATCH] Update settings.json --- .vscode/settings.json | 22 ++++++++++++++++------ 1 file changed, 16 insertions(+), 6 deletions(-) diff --git a/.vscode/settings.json b/.vscode/settings.json index 30bf8c2..c196e85 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,11 +1,21 @@ -// Place your settings in this file to overwrite default and user settings. { "files.exclude": { - "out": false // set this to true to hide the "out" folder with the compiled JS files + "**/.git": true, + "**/.DS_Store": true, + "**/node_modules": true, + "**/out": true }, "search.exclude": { - "out": true // set this to false to include "out" folder in search results + "**/node_modules": true, + "**/bower_components": true, + "**/out": true }, - // Turn off tsc task auto detection since we have the necessary tasks as npm scripts - "typescript.tsc.autoDetect": "off" -} \ No newline at end of file + "typescript.tsc.autoDetect": "off", + "editor,codeActionsOnSave": { + "source.fixAll.eslint": true + }, + "eslint.alwaysShowStatus": true, + "editor.formatOnSave": true, + "files.autoSave": "onFocusChange", + "git.ignoreLimitWarning": true +}