From d6a5e2b2e8a2a7613ed60ae2a5c7dd1d51696786 Mon Sep 17 00:00:00 2001 From: Brandon Rodriguez <brodriguez8774@gmail.com> Date: Fri, 9 Oct 2020 05:16:25 -0400 Subject: [PATCH] Update environment settings handling --- languages/c.gitignore | 7 +++++++ languages/c_sharp.gitignore | 4 +++- languages/django.gitignore | 17 +++++++++++------ languages/python.gitignore | 17 +++++++++++------ 4 files changed, 32 insertions(+), 13 deletions(-) diff --git a/languages/c.gitignore b/languages/c.gitignore index c299802..015283e 100644 --- a/languages/c.gitignore +++ b/languages/c.gitignore @@ -6,6 +6,13 @@ ## +# Ignore environment settings. +.vs/ +.vscode/ +vs/ +vscode/ + + # Ignore temporary files. [Tt]emp/ [Tt]empfiles/ diff --git a/languages/c_sharp.gitignore b/languages/c_sharp.gitignore index c9cf524..dec13ec 100644 --- a/languages/c_sharp.gitignore +++ b/languages/c_sharp.gitignore @@ -2,13 +2,15 @@ # GitIgnore file for C# projects. # See https://git-scm.com/docs/gitignore for documentation. # - # Version 1.0 + # Version 1.1 ## # Ignore environment settings. .vs/ +.vscode/ vs/ +vscode/ *.rsuser *.suo *.user diff --git a/languages/django.gitignore b/languages/django.gitignore index c44db74..6146b0c 100644 --- a/languages/django.gitignore +++ b/languages/django.gitignore @@ -7,12 +7,17 @@ # Ignore environment settings. -.env -.idea -.venv -env -idea -venv +.env/ +.idea/ +.venv/ +.vs/ +.vscode/ +env/ +idea/ +venv/ +vs/ +vscode/ + # Ignore temporary files. diff --git a/languages/python.gitignore b/languages/python.gitignore index 0973efe..edb8e65 100644 --- a/languages/python.gitignore +++ b/languages/python.gitignore @@ -7,12 +7,17 @@ # Ignore environment settings. -.env -.idea -.venv -env -idea -venv +.env/ +.idea/ +.venv/ +.vs/ +.vscode/ +env/ +idea/ +venv/ +vs/ +vscode/ + # Ignore temporary files. -- GitLab