From a0db46cd0820c5e2ceee6075cf272f0e41c9cf92 Mon Sep 17 00:00:00 2001 From: rocky Date: Thu, 11 Apr 2019 12:21:07 -0400 Subject: [PATCH] Emacs and CMakeLists.txt administrivia .editorconfig - specify CMakeLists.txt indentation .gitignore - ignore emacs backups tmp - like /tmp but specific to this project --- .editorconfig | 4 ++++ .gitignore | 7 +++++++ 2 files changed, 11 insertions(+) diff --git a/.editorconfig b/.editorconfig index 7b8a7be9f..d80fb3570 100644 --- a/.editorconfig +++ b/.editorconfig @@ -17,3 +17,7 @@ indent_size = 4 [std/**.sol] indent_style = space indent_size = 4 + +[*.{txt,cmake}] +indent_style = tab +indent_size = 4 diff --git a/.gitignore b/.gitignore index 62ddd1af0..bbdf9d68d 100644 --- a/.gitignore +++ b/.gitignore @@ -32,6 +32,7 @@ prerelease.txt # Build directory build/ +build*/ emscripten_build/ docs/_build docs/utils/__pycache__ @@ -44,6 +45,9 @@ deps/cache [._]*.sw[a-p] [._]sw[a-p] +# emacs stuff +*~ + # IDE files .idea .vscode @@ -53,3 +57,6 @@ CMakeLists.txt.user /.vs /.cproject /.project + +# place to put local temporary files +tmp