From 38c3f3210915ccfdec81afa8663f49e33980f3c2 Mon Sep 17 00:00:00 2001 From: librelois Date: Mon, 4 Jan 2021 13:58:32 +0100 Subject: [PATCH] git: ignore rust binaries & autogenerated dart/rust binding code --- .gitignore | 22 +++++++++++++++++----- 1 file changed, 17 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index f8b0720..263a9d0 100644 --- a/.gitignore +++ b/.gitignore @@ -15,10 +15,8 @@ *.iws .idea/ -# The .vscode folder contains launch configuration and tasks you configure in -# VS Code which you may wish to be included in version control, so this line -# is commented out by default. -#.vscode/ +# VS Code related +.vscode/ # Flutter/Dart/Pub related **/doc/api/ @@ -40,5 +38,19 @@ app.*.symbols # Obfuscation related app.*.map.json +# Android related android/key.properties -.vscode/ + +# Exceptions to above rules. +!/packages/flutter_tools/test/data/dart_dependencies_test/**/.packages + +# Autogenerated dart/rust binding code +native/dubp_rs/binding.h +packages/dubp_rs/lib/ffi.dart + +# Rust compiled libs for android or ios +**/*.a +**/*.so + +# Rust things +/target