This is an automated email from the ASF dual-hosted git repository.

kalyanr pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git


The following commit(s) were added to refs/heads/main by this push:
     new 9d79cbed690 include vscode folders in .gitignore (#57567)
9d79cbed690 is described below

commit 9d79cbed690cbe300dcf7f6584696eb77335bac5
Author: Kalyan R <[email protected]>
AuthorDate: Thu Oct 30 21:00:08 2025 +0530

    include vscode folders in .gitignore (#57567)
    
    * include vscode folders in .gitignore
    
    * remove .vscode
---
 .gitignore              |  2 ++
 .vscode/extensions.json |  5 -----
 .vscode/settings.json   | 38 --------------------------------------
 3 files changed, 2 insertions(+), 43 deletions(-)

diff --git a/.gitignore b/.gitignore
index 1528de626bd..e7fb2a5403d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -171,6 +171,8 @@ npm-debug.log*
 yarn-debug.log*
 yarn-error.log*
 pnpm-debug.log*
+.vscode/*
+!.vscode/extensions.json
 /.vite/
 # Exclude the ui .vite dir
 airflow-core/src/airflow/ui/.vite/
diff --git a/.vscode/extensions.json b/.vscode/extensions.json
deleted file mode 100644
index 0e6d5fd64e4..00000000000
--- a/.vscode/extensions.json
+++ /dev/null
@@ -1,5 +0,0 @@
-{
-  "recommendations": [
-    "esbenp.prettier-vscode",
-  ]
-}
diff --git a/.vscode/settings.json b/.vscode/settings.json
deleted file mode 100644
index aeae611e1fe..00000000000
--- a/.vscode/settings.json
+++ /dev/null
@@ -1,38 +0,0 @@
-{
-  "[javascript]": {
-    "editor.defaultFormatter": "esbenp.prettier-vscode",
-    "editor.formatOnSave": true,
-    "editor.codeActionsOnSave": {
-      "source.fixAll.eslint": "explicit"
-    }
-  },
-  "[javascriptreact]": {
-    "editor.defaultFormatter": "esbenp.prettier-vscode",
-    "editor.formatOnSave": true,
-    "editor.codeActionsOnSave": {
-      "source.fixAll.eslint": "explicit"
-    }
-  },
-  "[typescript]": {
-    "editor.defaultFormatter": "esbenp.prettier-vscode",
-    "editor.formatOnSave": true,
-    "editor.codeActionsOnSave": {
-      "source.fixAll.eslint": "explicit"
-    }
-  },
-  "[typescriptreact]": {
-    "editor.defaultFormatter": "esbenp.prettier-vscode",
-    "editor.formatOnSave": true,
-    "editor.codeActionsOnSave": {
-      "source.fixAll.eslint": "explicit"
-    }
-  },
-  "[json]": {
-    "editor.defaultFormatter": "esbenp.prettier-vscode",
-    "editor.formatOnSave": true
-  },
-  "[jsonc]": {
-    "editor.defaultFormatter": "esbenp.prettier-vscode",
-    "editor.formatOnSave": true
-  },
-}

Reply via email to