From b55753a66df0c4c6694b58c27fd31f0b9d7127ee Mon Sep 17 00:00:00 2001 From: Ronald K <43806892+rkodev@users.noreply.github.com> Date: Wed, 30 Aug 2023 15:34:00 +0300 Subject: [PATCH] Exclude popular editors in gitignore (#819) * Exclude popular edito files * Remove vscode --- .gitignore | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index d782ecbdc..c0eb8078d 100644 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,11 @@ dist/ lib/ kiota-linux-x64/ kiota_tool/ -*.log \ No newline at end of file +*.log + +# Editor and IDE files +.idea/ +*.sublime-* +*.swp + +``` \ No newline at end of file