From cfa90d976c5a47ab9f8de62092b6360b797288f8 Mon Sep 17 00:00:00 2001 From: Augustin Mauroy <97875033+AugustinMauroy@users.noreply.github.com> Date: Wed, 25 Jan 2023 21:50:28 +0100 Subject: [PATCH 1/3] feat(vsc): remove vsc --- .vscode/extensions.json | 6 ------ .vscode/settings.json | 24 ------------------------ 2 files changed, 30 deletions(-) delete mode 100644 .vscode/extensions.json delete mode 100644 .vscode/settings.json diff --git a/.vscode/extensions.json b/.vscode/extensions.json deleted file mode 100644 index b0b0fda6..00000000 --- a/.vscode/extensions.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "recommendations": [ - "dbaeumer.vscode-eslint", - "unifiedjs.vscode-mdx" - ] -} \ No newline at end of file diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index cb78c2dc..00000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,24 +0,0 @@ -{ - "editor.formatOnSave": true, - "editor.defaultFormatter": "esbenp.prettier-vscode", - "workbench.colorCustomizations": { - "[GitHub Dark]": { - "tab.activeBackground": "#0d0d0d", - "tab.activeBorder": "#ffff00" - }, - "activityBar.background": "#61EFCD", - "activityBar.foreground": "#1C6B58", - "activityBar.inactiveForeground": "#444444", - "activityBar.activeBorder": "#9e1032", - "activityBar.activeBackground": "#2F9980", - "activityBar.border": "#2F9980", - "titleBar.activeBackground": "#44DAB6", - "titleBar.activeForeground": "#1C6B58", - "titleBar.inactiveBackground": "#60bea7", - "titleBar.inactiveForeground": "#444444", - "titleBar.border": "#2F9980", - "statusBar.background": "#42CCAB", - "statusBar.foreground": "#1C6B58", - "statusBar.border": "#2F9980" - } -} From 8ff69b03875b912c7072204321becf6d31209cc3 Mon Sep 17 00:00:00 2001 From: Augustin Mauroy <97875033+AugustinMauroy@users.noreply.github.com> Date: Wed, 25 Jan 2023 21:52:50 +0100 Subject: [PATCH 2/3] chore(gitignore) add vsc file to the list --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index d267fcbc..3262184d 100644 --- a/.gitignore +++ b/.gitignore @@ -32,3 +32,6 @@ versioned_sidebars/* !versioned_sidebars/.keep static/generated/*.json + +# IDE files +.vscode From 7afed3f74f7dfb8e4dd2be9abc7c0dab6dead339 Mon Sep 17 00:00:00 2001 From: Augustin Mauroy <97875033+AugustinMauroy@users.noreply.github.com> Date: Sat, 11 Feb 2023 15:01:39 +0100 Subject: [PATCH 3/3] feat(vsc): update vsc file content --- .gitignore | 2 +- .vscode/extension.json | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 .vscode/extension.json diff --git a/.gitignore b/.gitignore index 3262184d..fbb869fd 100644 --- a/.gitignore +++ b/.gitignore @@ -34,4 +34,4 @@ versioned_sidebars/* static/generated/*.json # IDE files -.vscode +.vscode/settings.json \ No newline at end of file diff --git a/.vscode/extension.json b/.vscode/extension.json new file mode 100644 index 00000000..36f57a2f --- /dev/null +++ b/.vscode/extension.json @@ -0,0 +1,6 @@ +{ + "recommendations": [ + "dbaeumer.vscode-eslint", + "unifiedjs.vscode-mdx" + ] +} \ No newline at end of file