From 204437d167f2e87c3fd9b4e78c81b736e549481a Mon Sep 17 00:00:00 2001 From: Supreet Deshpande Date: Fri, 22 Feb 2019 20:02:21 +0530 Subject: [PATCH] feature/update_gitignore: Updating .gitignore for some common filetypes. Changes to exclude emacs, MacOS directory files & .pyc files from git. --- .gitignore | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.gitignore b/.gitignore index 86e34e78..a24b4731 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *.o +*.pyc # eclipse setting .settings @@ -17,3 +18,17 @@ examples/**/build tools/unit-test-app/sdkconfig tools/unit-test-app/sdkconfig.old tools/unit-test-app/build + +# emacs +.dir-locals.el + +# emacs temp file suffixes +*~ +.#* +\#*# + +# eclipse setting +.settings + +# MacOS directory files +.DS_Store \ No newline at end of file